1 Resources

This documentation describes the Oracle WebLogic Server RESTful edit resources that are used to view and modify the domain configuration.

For a complete listing of the WLS REST reference documents and descriptions of their use, see Administering Oracle WebLogic Server with RESTful Management Services.

/management/weblogic

This resource is used to access the different versions of the resources in this domain.

The latest version is 12.2.1.2.0. The other versions, which are deprecated, are 12.2.1.0.0, 12.2.1.1.0.

For future releases, latest always refers to the most recent release.

All new and non-deprecated MBean features are available in all versions. Any MBean features that were deprecated in a version will not be available in that version or later versions, but will still be available using earlier versions.

To always use the latest resources, 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.2.0 in the URLs.

The resource supports the following methods:

GET

Get this collection of weblogic.management.rest.bean.model.Version instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

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.2.0 rel=current

    Access the latest version of the WLS resources in the this domain.

  • uri=/management/weblogic rel=self

    This resource.

Example

Example 1   View the versions collection.

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

/management/weblogic/{version}

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

Get this weblogic.management.rest.bean.model.Version instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

Example

Example 1   View the latest version.

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.2.0",
    "isLatest": true,
    "lifecycle": "active"
}
Example 2   View a specific version.

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.2.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.2.0"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0"
        },
        {
            "rel": "edit",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0/edit"
        },
        {
            "rel": "domainConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0/domainConfig"
        },
        {
            "rel": "domainRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0/domainRuntime"
        },
        {
            "rel": "serverRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0/serverRuntime"
        },
        {
            "rel": "serverConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0/serverConfig"
        },
        {
            "rel": "currentUser",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0/currentUser"
        }
    ],
    "version": "12.2.1.2.0",
    "isLatest": true,
    "lifecycle": "active"
}

/management/weblogic/{version}/currentUser

This resource represents an authenticated user in the domain.

The resource supports the following methods:

GET

Get this weblogic.management.rest.bean.model.CurrentUser instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.rest.bean.model.CurrentUser entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.rest.bean.model.CurrentUser Instance

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"
}

/management/weblogic/{version}/edit

This resource is used to edit the WebLogic Server configuration.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DomainMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DomainMBean entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.configuration.DomainMBean Instance

This example uses the GET method to view this weblogic.management.configuration.DomainMBean 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/edit?fields=administrationProtocol,productionModeEnabled&links=self

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "self",
        "href": "http:\//localhost:7001/management/weblogic/latest/edit"
    }],
    "administrationProtocol": "t3s",
    "productionModeEnabled": false
}

POST

Update this weblogic.management.configuration.DomainMBean instance.

Request Body

Must contain a weblogic.management.configuration.DomainMBean entity.

/management/weblogic/{version}/edit/adminConsole

This resource manages a weblogic.management.configuration.AdminConsoleMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AdminConsoleMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AdminConsoleMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.AdminConsoleMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.AdminConsoleMBean entity.

/management/weblogic/{version}/edit/appDeployments

This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.

If the source path is relative, it is resolved relative to InstallDir/app if InstallDir is not null; otherwise, it is resolved relative to the domain root.

Example

Example 1   Synchronously Create the weblogic.management.configuration.AppDeploymentMBean Instance

This example uses the POST method to synchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{
  name: 'fairShare',
  sourcePath: '/deployments/fairShare.war',
  targets: [
    { identity: [ 'servers',  'AdminServer' ] },
    { identity: [ 'clusters', 'Cluster-0'   ] }
  ]
}" \
-X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 201 Created

Location: http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare"
    }],
    "operationType": 3,
    "state": "STATE_COMPLETED",
    "applicationName": "fairShare",
    "progress": "success",
    "completed": true
}
Example 2   Asynchronously Create the weblogic.management.configuration.AppDeploymentMBean Instance

This example uses the POST method to asynchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{
  name: 'fairShare',
  sourcePath: '/deployments/fairShare.war',
  targets: [
    { identity: [ 'servers',  'AdminServer' ] },
    { identity: [ 'clusters', 'Cluster-0'   ] }
  ]
}" \
-H "Prefer:respond-async" \
-X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 202 Accepted

Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare"
    }],
    "operationType": 3,
    "state": "STATE_RUNNING",
    "applicationName": "fairShare",
    "progress": "processing",
    "completed": false
}

POST accepting multipart/form-data

Use the multi-part form to upload an application from the client to the server and then deploy it.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to deploy an application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

Example

Example 1   Synchronously Create the weblogic.management.configuration.AppDeploymentMBean Instance

This example uses the POST method to synchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:multipart/form-data \
-F "model={
  name: 'myapp',
  targets: [ { identity: [ 'servers', 'AdminServer' ] } ]
}" \
-F "sourcePath=@/deployments/MyApp/app/MyApp.ear" \
-X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 100 Continue HTTP/1.1 201 Created

Location: http://localhost:7001/management/weblogic/latest/edit/appDeployments/myapp

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/myapp"
    }],
    "operationType": 3,
    "state": "STATE_COMPLETED",
    "applicationName": "myapp",
    "progress": "success",
    "completed": true
}
Example 2   Asynchronously Create the weblogic.management.configuration.AppDeploymentMBean Instance

This example uses the POST method to asynchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:multipart/form-data \
-F "model={
  name: 'myapp',
  targets: [ { identity: [ 'servers', 'AdminServer' ] } ]
}" \
-F "sourcePath=@/deployments/MyApp/app/MyApp.ear" \
-H "Prefer:respond-async" \
-X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 100 Continue HTTP/1.1 202 Accepted

Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/myapp

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/myapp"
    }],
    "operationType": 3,
    "state": "STATE_RUNNING",
    "applicationName": "myapp",
    "progress": "processing",
    "completed": false
}

/management/weblogic/{version}/edit/appDeployments/{name}

This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.

The resource supports the following methods:

DELETE

Undeploy an application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Example

Example 1   Synchronously Delete the weblogic.management.configuration.AppDeploymentMBean Instance

This example uses the DELETE method to synchronously remove a weblogic.management.configuration.AppDeploymentMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X DELETE http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare"
    }],
    "operationType": 5,
    "state": "STATE_COMPLETED",
    "applicationName": "fairShare",
    "progress": "success",
    "completed": true
}
Example 2   Asynchronously Delete the weblogic.management.configuration.AppDeploymentMBean Instance

This example uses the DELETE method to asynchronously remove a weblogic.management.configuration.AppDeploymentMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H "Prefer:respond-async" \
-X DELETE http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 202 Accepted

Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare"
    }],
    "operationType": 5,
    "state": "STATE_RUNNING",
    "applicationName": "fairShare",
    "progress": "processing",
    "completed": false
}

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.configuration.AppDeploymentMBean Instance

This example uses the GET method to view this weblogic.management.configuration.AppDeploymentMBean 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/edit/appDeployments/fairShare?links=none&fields=name,versionIdentifier,targets

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "versionIdentifier": null,
    "name": "fairShare",
    "targets": [
        {"identity": [
            "servers",
            "AdminServer"
        ]},
        {"identity": [
            "clusters",
            "Cluster-0"
        ]}
    ]
}

POST

Update this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

/management/weblogic/{version}/edit/appDeployments/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/appDeployments/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy this application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Example

Example 1   Synchronously Invoke the redeploy Action

This example uses the POST method to synchronously invoke the redeploy action.

Example Request

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/edit/appDeployments/fairShare/redeploy?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare"
    }],
    "operationType": 4,
    "state": "STATE_COMPLETED",
    "applicationName": "fairShare",
    "progress": "success",
    "completed": true
}
Example 2   Asynchronously Invoke the redeploy Action

This example uses the POST method to asynchronously invoke the redeploy action.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{}" \
-H "Prefer:respond-async" \
-X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare/redeploy?links=job,abort&fields=completed,progress,error,state,operationType,applicationName

Example Response

HTTP/1.1 202 Accepted

Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare

Response Body:
{
    "links": [{
        "rel": "job",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare"
    }],
    "operationType": 4,
    "state": "STATE_RUNNING",
    "applicationName": "fairShare",
    "progress": "processing",
    "completed": false
}

/management/weblogic/{version}/edit/appDeployments/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/appDeployments/{name}/update

The resource supports the following methods:

POST

Update this application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/arePartitionsPresent

The resource supports the following methods:

POST

Specifies whether at least one partition has been configured.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/edit/batchConfig

This resource manages a weblogic.management.configuration.BatchConfigMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.BatchConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.BatchConfigMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.BatchConfigMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.BatchConfigMBean entity.

/management/weblogic/{version}/edit/cdiContainer

This resource manages a weblogic.management.configuration.CdiContainerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CdiContainerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CdiContainerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CdiContainerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CdiContainerMBean entity.

/management/weblogic/{version}/edit/changeManager

The changeManager resource returns information about edit sessions. Use this resource to explicitly manage an edit session:

  • Use the changeManager to start an edit session.

  • Use other resources to make any number of configuration changes, such as configuring data sources and deploying applications.

  • Use the changeManager to either cancel all the changes in the edit session or activate them.

This strategy batches all the changes together which is typically most useful in a production environment when a number of configuration changes need to be made together before they are ready to be exposed to clients.

With implicit edit sessions, instead of using the changeManager, just use other resources to change the configuration (for example, create a data source). Each REST call to change the configuration will start its own edit session, make the change, and then activate the change. This is useful for small tweaks to the configuration as typically performed in development environments.

The resource supports the following methods:

GET

Get this weblogic.management.rest.bean.model.ChangeManager instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/changeManager/activate

The resource supports the following methods:

POST

This resource saves and activates the changes to the current edit session

Roles

Admin, Deployer

/management/weblogic/{version}/edit/changeManager/cancelEdit

The resource supports the following methods:

POST

This resource cancels the current edit session.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/changeManager/forceResolve

The resource supports the following methods:

POST

This edit session forcibly resolves all changes between the default edit session and the global configuration.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/changeManager/safeResolve

The resource supports the following methods:

POST

This edit session resolves non-conflicting changes between the default edit session and the global configuration.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/changeManager/startEdit

The resource supports the following methods:

POST

This resource starts an edit session.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/clusterCreateForm

This resource manages the create forms for the clusters collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ClusterMBean entity populated with default values that can be customized then posted (using the POST method) to the clusters collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ClusterMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/clusters

This resource manages a collection of weblogic.management.configuration.ClusterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ClusterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ClusterMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ClusterMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ClusterMBean entity.

/management/weblogic/{version}/edit/clusters/{name}

This resource manages a weblogic.management.configuration.ClusterMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ClusterMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ClusterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ClusterMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ClusterMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ClusterMBean entity.

/management/weblogic/{version}/edit/clusters/{name}/coherenceTier

This resource manages a weblogic.management.configuration.CoherenceTierMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceTierMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceTierMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CoherenceTierMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CoherenceTierMBean entity.

/management/weblogic/{version}/edit/clusters/{name}/databaseLessLeasingBasis

This resource manages a weblogic.management.configuration.DatabaseLessLeasingBasisMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DatabaseLessLeasingBasisMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DatabaseLessLeasingBasisMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/clusters/{name}/dynamicServers

This resource manages a weblogic.management.configuration.DynamicServersMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DynamicServersMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DynamicServersMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DynamicServersMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DynamicServersMBean entity.

/management/weblogic/{version}/edit/clusters/{name}/JTACluster

This resource manages a weblogic.management.configuration.JTAClusterMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAClusterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAClusterMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JTAClusterMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JTAClusterMBean entity.

/management/weblogic/{version}/edit/clusters/{name}/overloadProtection

This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OverloadProtectionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OverloadProtectionMBean entity.

/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTrigger

This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ServerFailureTriggerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ServerFailureTriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ServerFailureTriggerMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTriggerCreateForm

This resource manages the create forms for the serverFailureTrigger optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ServerFailureTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the serverFailureTrigger optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceClusterSystemResourceCreateForm

This resource manages the create forms for the coherenceClusterSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceClusterSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/coherenceClusterSystemResources

This resource manages a collection of weblogic.management.configuration.CoherenceClusterSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CoherenceClusterSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CoherenceClusterSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}

This resource manages a weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigCreateForm

This resource manages the create forms for the coherenceCacheConfigs collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CoherenceCacheConfigMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceCacheConfigs collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs

This resource manages a collection of weblogic.management.configuration.CoherenceCacheConfigMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CoherenceCacheConfigMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.CoherenceCacheConfigMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name}

This resource manages a weblogic.management.configuration.CoherenceCacheConfigMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CoherenceCacheConfigMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.CoherenceCacheConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.CoherenceCacheConfigMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name}/importCacheConfigurationFile

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Imports the file to be used as the cache configuration file from the resource getCacheConfigurationFile().

Roles

Admin, Deployer

Response Body

Contains an empty JSON object.

POST

Imports the file to be used as the cache configuration file.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

file

the name of the file

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource

This resource manages a weblogic.coherence.descriptor.wl.WeblogicCoherenceBean instance.

The resource supports the following methods:

GET

Get this weblogic.coherence.descriptor.wl.WeblogicCoherenceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.coherence.descriptor.wl.WeblogicCoherenceBean entity.

This method can return the following links:

POST

Update this weblogic.coherence.descriptor.wl.WeblogicCoherenceBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.coherence.descriptor.wl.WeblogicCoherenceBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders

This resource manages a weblogic.coherence.descriptor.wl.CoherenceAddressProvidersBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviderCreateForm

This resource manages the create forms for the coherenceAddressProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceAddressProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders

This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instances.

The resource supports the following methods:

POST

Add a new weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}

This resource manages a weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}/coherenceSocketAddressCreateForm

This resource manages the create forms for the coherenceSocketAddresses collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}/coherenceSocketAddresses

This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instances.

The resource supports the following methods:

POST

Add a new weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}/coherenceSocketAddresses/{name}

This resource manages a weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams

This resource manages a weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean entity.

This method can return the following links:

POST

Update this weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCacheCreateForm

This resource manages the create forms for the coherenceCaches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceCaches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches

This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceCacheBean instances.

The resource supports the following methods:

POST

Add a new weblogic.coherence.descriptor.wl.CoherenceCacheBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches/{name}

This resource manages a weblogic.coherence.descriptor.wl.CoherenceCacheBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.coherence.descriptor.wl.CoherenceCacheBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.coherence.descriptor.wl.CoherenceCacheBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses

This resource manages a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddressCreateForm

This resource manages the create forms for the coherenceClusterWellKnownAddresses collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddresses

This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instances.

The resource supports the following methods:

POST

Add a new weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddresses/{name}

This resource manages a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter

This resource manages a weblogic.coherence.descriptor.wl.CoherenceIdentityAsserterBean instance.

The resource supports the following methods:

POST

Update this weblogic.coherence.descriptor.wl.CoherenceIdentityAsserterBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParamCreateForm

This resource manages the create forms for the coherenceInitParams collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParams

This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceInitParamBean instances.

The resource supports the following methods:

POST

Add a new weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.coherence.descriptor.wl.CoherenceInitParamBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParams/{name}

This resource manages a weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.coherence.descriptor.wl.CoherenceInitParamBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceKeystoreParams

This resource manages a weblogic.coherence.descriptor.wl.CoherenceKeystoreParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.coherence.descriptor.wl.CoherenceKeystoreParamsBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServiceCreateForm

This resource manages the create forms for the coherenceServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices

This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceServiceBean instances.

The resource supports the following methods:

POST

Add a new weblogic.coherence.descriptor.wl.CoherenceServiceBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices/{name}

This resource manages a weblogic.coherence.descriptor.wl.CoherenceServiceBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.coherence.descriptor.wl.CoherenceServiceBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.coherence.descriptor.wl.CoherenceServiceBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceFederationParams

This resource manages a weblogic.coherence.descriptor.wl.CoherenceFederationParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.coherence.descriptor.wl.CoherenceFederationParamsBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceLoggingParams

This resource manages a weblogic.coherence.descriptor.wl.CoherenceLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.coherence.descriptor.wl.CoherenceLoggingParamsBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherencePersistenceParams

This resource manages a weblogic.coherence.descriptor.wl.CoherencePersistenceParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.coherence.descriptor.wl.CoherencePersistenceParamsBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/importCustomClusterConfigurationFile

The resource supports the following methods:

POST

Allows you to specify a custom Coherence cluster configuration file. The file must be present locally on the Administration Server.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

file

Absolute path to the custom Coherence cluster configuration file

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/coherenceManagementClusterCreateForm

This resource manages the create forms for the coherenceManagementClusters collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CoherenceManagementClusterMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceManagementClusters collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceManagementClusterMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/coherenceManagementClusters

This resource manages a collection of weblogic.management.configuration.CoherenceManagementClusterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CoherenceManagementClusterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CoherenceManagementClusterMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CoherenceManagementClusterMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/coherenceManagementClusters/{name}

This resource manages a weblogic.management.configuration.CoherenceManagementClusterMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceManagementClusterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceManagementClusterMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CoherenceManagementClusterMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviderCreateForm

This resource manages the create forms for the coherenceManagementAddressProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CoherenceManagementAddressProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceManagementAddressProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders

This resource manages a collection of weblogic.management.configuration.CoherenceManagementAddressProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CoherenceManagementAddressProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders/{name}

This resource manages a weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/coherenceServerCreateForm

This resource manages the create forms for the coherenceServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CoherenceServerMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/coherenceServers

This resource manages a collection of weblogic.management.configuration.CoherenceServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CoherenceServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CoherenceServerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CoherenceServerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CoherenceServerMBean entity.

/management/weblogic/{version}/edit/coherenceServers/{name}

This resource manages a weblogic.management.configuration.CoherenceServerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CoherenceServerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.CoherenceServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CoherenceServerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CoherenceServerMBean entity.

/management/weblogic/{version}/edit/coherenceServers/{name}/coherenceServerStart

This resource manages a weblogic.management.configuration.CoherenceServerStartMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceServerStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceServerStartMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/configurationPropertyCreateForm

This resource manages the create forms for the configurationProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/customResourceCreateForm

This resource manages the create forms for the customResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CustomResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the customResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CustomResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/customResources

This resource manages a collection of weblogic.management.configuration.CustomResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CustomResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CustomResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CustomResourceMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CustomResourceMBean entity.

/management/weblogic/{version}/edit/customResources/{name}

This resource manages a weblogic.management.configuration.CustomResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CustomResourceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.CustomResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CustomResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CustomResourceMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CustomResourceMBean entity.

/management/weblogic/{version}/edit/customResources/{name}/customResource

This resource manages a weblogic.descriptor.DescriptorBean instance.

The resource supports the following methods:

GET

Get this weblogic.descriptor.DescriptorBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.descriptor.DescriptorBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/customResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/customResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/debugPatches

This resource manages a weblogic.management.configuration.DebugPatchesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DebugPatchesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DebugPatchesMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DebugPatchesMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DebugPatchesMBean entity.

/management/weblogic/{version}/edit/deploymentConfiguration

This resource manages a weblogic.management.configuration.DeploymentConfigurationMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DeploymentConfigurationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DeploymentConfigurationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin

This resource manages a weblogic.management.configuration.DeploymentValidationPluginMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DeploymentValidationPluginMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DeploymentValidationPluginMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameterCreateForm

This resource manages the create forms for the parameters collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ParameterMBean entity populated with default values that can be customized then posted (using the POST method) to the parameters collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters

This resource manages a collection of weblogic.management.configuration.ParameterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ParameterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ParameterMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ParameterMBean entity.

/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters/{name}

This resource manages a weblogic.management.configuration.ParameterMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ParameterMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.ParameterMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ParameterMBean entity.

/management/weblogic/{version}/edit/embeddedLDAP

This resource manages a weblogic.management.configuration.EmbeddedLDAPMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.EmbeddedLDAPMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.EmbeddedLDAPMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.EmbeddedLDAPMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.EmbeddedLDAPMBean entity.

/management/weblogic/{version}/edit/fileStoreCreateForm

This resource manages the create forms for the fileStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/fileStores

This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.FileStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.FileStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/fileStores/{name}

This resource manages a weblogic.management.configuration.FileStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/findConfigBeansWithTags

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Find all ConfigurationMBeans of the specified config bean type that have the specified tag(s). The tag param may be a single tag or multiple tags. The config bean must have a matching tag for every tag specified. The type may be an empty string to get all types of config beans with the specified tags. The tag may include white spaces. White spaces will not be treated specially. If the user specifies the tags param as "santa clara", this is considered to be a single tag 'santa clara', not two. Spaces are not delimiters.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

type of the MBean (shortened version of the class name less the MBean)

Type: string

tags

tags

Type: array of string

Response Body

Contains a JSON object with a array of weblogic.management.configuration.ConfigurationMBean references return field.

POST

Find all ConfigurationMBeans of the specified config bean type that have the specified tag(s). The tag param may be a single tag or multiple tags. If matchAll is true the config bean must have a matching tag for every tag specified. If matchAll is false the config bean may match on any single tag specified. The type may be an empty string to get all types of config beans with the specified tags. The tag may include white spaces. White spaces will not be treated specially. If the user specifies the tags param as "santa clara", this is considered to be a single tag 'santa clara', not two. Spaces are not delimiters.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

type of the MBean (shortened version of the class name less the MBean)

Type: string

matchAll

false to match on any single tag, true to match on all tags

Type: boolean

tags

tags

Type: array of string

Response Body

Contains a JSON object with a array of weblogic.management.configuration.ConfigurationMBean references return field.

/management/weblogic/{version}/edit/findPartitionByID

The resource supports the following methods:

POST

Looks up a partition by the partition ID. The ID is a unique string that is NOT necessarily the same as the MBean name.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

id

the id of the partition to find

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.PartitionMBean reference return field.

/management/weblogic/{version}/edit/foreignJNDIProviderCreateForm

This resource manages the create forms for the foreignJNDIProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/foreignJNDIProviders

This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ForeignJNDIProviderMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/foreignJNDIProviders/{name}

This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm

This resource manages the create forms for the foreignJNDILinks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinks

This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ForeignJNDILinkMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinks/{name}

This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/interceptors

This resource manages a weblogic.management.configuration.InterceptorsMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.InterceptorsMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.InterceptorsMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.InterceptorsMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.InterceptorsMBean entity.

/management/weblogic/{version}/edit/interceptors/interceptorCreateForm

This resource manages the create forms for the interceptors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.InterceptorMBean entity populated with default values that can be customized then posted (using the POST method) to the interceptors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.InterceptorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/interceptors/interceptors

This resource manages a collection of weblogic.management.configuration.InterceptorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.InterceptorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.InterceptorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.InterceptorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.InterceptorMBean entity.

/management/weblogic/{version}/edit/interceptors/interceptors/{name}

This resource manages a weblogic.management.configuration.InterceptorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.InterceptorMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.InterceptorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.InterceptorMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.InterceptorMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.InterceptorMBean entity.

/management/weblogic/{version}/edit/internalAppDeployments

This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/internalAppDeployments/{name}

This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

/management/weblogic/{version}/edit/internalAppDeployments/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/internalAppDeployments/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy this application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/internalAppDeployments/{name}/update

The resource supports the following methods:

POST

Update this application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/internalLibraries

This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LibraryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LibraryMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/internalLibraries/{name}

This resource manages a weblogic.management.configuration.LibraryMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

/management/weblogic/{version}/edit/internalLibraries/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/internalLibraries/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/internalLibraries/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JDBCStoreCreateForm

This resource manages the create forms for the JDBCStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JDBCStores

This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/JDBCStores/{name}

This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/JDBCSystemResourceCreateForm

This resource manages the create forms for the JDBCSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JDBCSystemResources

This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}

This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JMSBridgeDestinationCreateForm

This resource manages the create forms for the JMSBridgeDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSBridgeDestinations

This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSBridgeDestinationMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/JMSBridgeDestinations/{name}

This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/JMSInteropModuleCreateForm

This resource manages the create forms for the JMSInteropModules collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSInteropModuleMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSInteropModules collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSInteropModuleMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules

This resource manages a collection of weblogic.management.configuration.JMSInteropModuleMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSInteropModuleMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSInteropModuleMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSInteropModuleMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSInteropModuleMBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}

This resource manages a weblogic.management.configuration.JMSInteropModuleMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSInteropModuleMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSInteropModuleMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSInteropModuleMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSInteropModuleMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSInteropModuleMBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource

This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/clientParams

This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams

This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/flowControlParams

This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams

This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/securityParams

This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/transactionParams

This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactoryCreateForm

This resource manages the create forms for the connectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeyCreateForm

This resource manages the create forms for the destinationKeys collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys

This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.DestinationKeyBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys/{name}

This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServerCreateForm

This resource manages the create forms for the foreignServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.ForeignServerBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm

This resource manages the create forms for the foreignConnectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm

This resource manages the create forms for the foreignDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties

This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key}

This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm

This resource manages the create forms for the JNDIProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queueCreateForm

This resource manages the create forms for the queues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues

This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.QueueBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotaCreateForm

This resource manages the create forms for the quotas collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotas

This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.QuotaBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotas/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlingCreateForm

This resource manages the create forms for the SAFErrorHandlings collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinationCreateForm

This resource manages the create forms for the SAFImportedDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm

This resource manages the create forms for the SAFQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm

This resource manages the create forms for the SAFTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContextCreateForm

This resource manages the create forms for the SAFRemoteContexts collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext

This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templateCreateForm

This resource manages the create forms for the templates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates

This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.TemplateBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/findErrorDestination

The resource supports the following methods:

POST

Finds the name of the error destination to use when a destination comes from a specific group

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

subDeploymentName

The subDeployment for which to find the quota

Type: string

Response Body

Contains a JSON object with a weblogic.j2ee.descriptor.wl.DestinationBean reference return field.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParamCreateForm

This resource manages the create forms for the groupParams collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams

This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName}

This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topicCreateForm

This resource manages the create forms for the topics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics

This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.TopicBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueueCreateForm

This resource manages the create forms for the uniformDistributedQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopicCreateForm

This resource manages the create forms for the uniformDistributedTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JMSServerCreateForm

This resource manages the create forms for the JMSServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSServers

This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSServerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/JMSServers/{name}

This resource manages a weblogic.management.configuration.JMSServerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/JMSServers/{name}/JMSMessageLogFile

This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSMessageLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSMessageLogFileMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.

/management/weblogic/{version}/edit/JMSSystemResourceCreateForm

This resource manages the create forms for the JMSSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSSystemResources

This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}

This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource

This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams

This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams

This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams

This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams

This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams

This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams

This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm

This resource manages the create forms for the connectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm

This resource manages the create forms for the destinationKeys collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys

This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.DestinationKeyBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys/{name}

This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm

This resource manages the create forms for the foreignServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.ForeignServerBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm

This resource manages the create forms for the foreignConnectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm

This resource manages the create forms for the foreignDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties

This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key}

This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm

This resource manages the create forms for the JNDIProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queueCreateForm

This resource manages the create forms for the queues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues

This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.QueueBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotaCreateForm

This resource manages the create forms for the quotas collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotas

This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.QuotaBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotas/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm

This resource manages the create forms for the SAFErrorHandlings collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm

This resource manages the create forms for the SAFImportedDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm

This resource manages the create forms for the SAFQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm

This resource manages the create forms for the SAFTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm

This resource manages the create forms for the SAFRemoteContexts collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext

This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templateCreateForm

This resource manages the create forms for the templates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates

This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.TemplateBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination

The resource supports the following methods:

POST

Finds the name of the error destination to use when a destination comes from a specific group

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

subDeploymentName

The subDeployment for which to find the quota

Type: string

Response Body

Contains a JSON object with a weblogic.j2ee.descriptor.wl.DestinationBean reference return field.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm

This resource manages the create forms for the groupParams collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams

This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName}

This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topicCreateForm

This resource manages the create forms for the topics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics

This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.j2ee.descriptor.wl.TopicBean entities.

This method can return the following links:

POST

Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm

This resource manages the create forms for the uniformDistributedQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm

This resource manages the create forms for the uniformDistributedTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/JMX

This resource manages a weblogic.management.configuration.JMXMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMXMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMXMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMXMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JMXMBean entity.

/management/weblogic/{version}/edit/joltConnectionPoolCreateForm

This resource manages the create forms for the joltConnectionPools collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JoltConnectionPoolMBean entity populated with default values that can be customized then posted (using the POST method) to the joltConnectionPools collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JoltConnectionPoolMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/joltConnectionPools

This resource manages a collection of weblogic.management.configuration.JoltConnectionPoolMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JoltConnectionPoolMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JoltConnectionPoolMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JoltConnectionPoolMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JoltConnectionPoolMBean entity.

/management/weblogic/{version}/edit/joltConnectionPools/{name}

This resource manages a weblogic.management.configuration.JoltConnectionPoolMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JoltConnectionPoolMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.JoltConnectionPoolMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JoltConnectionPoolMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JoltConnectionPoolMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JoltConnectionPoolMBean entity.

/management/weblogic/{version}/edit/JPA

This resource manages a weblogic.management.configuration.JPAMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JPAMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JPAMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JPAMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JPAMBean entity.

/management/weblogic/{version}/edit/JTA

This resource manages a weblogic.management.configuration.JTAMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JTAMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JTAMBean entity.

/management/weblogic/{version}/edit/libraries

This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LibraryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LibraryMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource is used to deploy libraries that are already on the admininstration server.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.

Use the multi-part form to deploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

POST accepting multipart/form-data

Upload a library from the client to the server then deploy it.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to upload a library from the client to the server then deploy it.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

/management/weblogic/{version}/edit/libraries/{name}

This resource manages a weblogic.management.configuration.LibraryMBean instance.

The resource supports the following methods:

DELETE

Undeploy a library.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

/management/weblogic/{version}/edit/libraries/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/libraries/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/libraries/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/libraries/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/lifecycleManagerConfig

This resource manages a weblogic.management.configuration.LifecycleManagerConfigMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LifecycleManagerConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LifecycleManagerConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPointCreateForm

This resource manages the create forms for the configuredEndPoints collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.LifecycleManagerEndPointMBean entity populated with default values that can be customized then posted (using the POST method) to the configuredEndPoints collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LifecycleManagerEndPointMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPoints

This resource manages a collection of weblogic.management.configuration.LifecycleManagerEndPointMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LifecycleManagerEndPointMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LifecycleManagerEndPointMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.LifecycleManagerEndPointMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPoints/{name}

This resource manages a weblogic.management.configuration.LifecycleManagerEndPointMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.LifecycleManagerEndPointMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.LifecycleManagerEndPointMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/listTags

The resource supports the following methods:

POST

List all tags of the specified config bean type. If the type param is empty string, then all tags used in the domain are returned.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

type

type of the MBean (shortened version of the class name less the MBean)

Type: string

Response Body

Contains a JSON object with a array of string return field.

/management/weblogic/{version}/edit/log

This resource manages a weblogic.management.configuration.LogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogMBean entity.

This method can return the following links:

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

    This resource.

  • rel=domainLogBroadcastFilter

    This resource's domainLogBroadcastFilter reference to a weblogic.management.configuration.LogFilterMBean resource.

  • rel=logFileFilter

    This resource's logFileFilter reference to a weblogic.management.configuration.LogFilterMBean resource.

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

    The parent resource of this resource.

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

    This resource.

  • rel=stdoutFilter

    This resource's stdoutFilter reference to a weblogic.management.configuration.LogFilterMBean resource.

POST

Update this weblogic.management.configuration.LogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.LogMBean entity.

/management/weblogic/{version}/edit/logFilterCreateForm

This resource manages the create forms for the logFilters collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.LogFilterMBean entity populated with default values that can be customized then posted (using the POST method) to the logFilters collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogFilterMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/logFilters

This resource manages a collection of weblogic.management.configuration.LogFilterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LogFilterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LogFilterMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.LogFilterMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.LogFilterMBean entity.

/management/weblogic/{version}/edit/logFilters/{name}

This resource manages a weblogic.management.configuration.LogFilterMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.LogFilterMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.LogFilterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogFilterMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LogFilterMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.LogFilterMBean entity.

/management/weblogic/{version}/edit/lookupSystemResource

The resource supports the following methods:

POST

Lookup a particular SystemResource in this domain.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.SystemResourceMBean reference return field.

/management/weblogic/{version}/edit/lookupTarget

The resource supports the following methods:

POST

Roles

Admin, Deployer, Operator

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.TargetMBean reference return field.

/management/weblogic/{version}/edit/machineCreateForm

This resource manages the create forms for the machines collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MachineMBean entity populated with default values that can be customized then posted (using the POST method) to the machines collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MachineMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/machines

This resource manages a collection of weblogic.management.configuration.MachineMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MachineMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MachineMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MachineMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MachineMBean entity.

/management/weblogic/{version}/edit/machines/{name}

This resource manages a weblogic.management.configuration.MachineMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MachineMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MachineMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MachineMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MachineMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MachineMBean entity.

/management/weblogic/{version}/edit/machines/{name}/nodeManager

This resource manages a weblogic.management.configuration.NodeManagerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.NodeManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.NodeManagerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.NodeManagerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.NodeManagerMBean entity.

/management/weblogic/{version}/edit/mailSessionCreateForm

This resource manages the create forms for the mailSessions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MailSessionMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/mailSessions

This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MailSessionMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MailSessionMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/mailSessions/{name}

This resource manages a weblogic.management.configuration.MailSessionMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MailSessionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/managedExecutorServiceCreateForm

This resource manages the create forms for the managedExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedExecutorServiceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/managedExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedExecutorServiceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ManagedExecutorServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedExecutorServiceTemplateCreateForm

This resource manages the create forms for the managedExecutorServiceTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServiceTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedExecutorServiceTemplates

This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/managedExecutorServiceTemplates/{name}

This resource manages a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedScheduledExecutorServiceCreateForm

This resource manages the create forms for the managedScheduledExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedScheduledExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/managedScheduledExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplateCreateForm

This resource manages the create forms for the managedScheduledExecutorServiceTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServiceTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplates

This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplates/{name}

This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/managedThreadFactories

This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedThreadFactoryMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/managedThreadFactories/{name}

This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedThreadFactoryMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ManagedThreadFactoryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedThreadFactoryCreateForm

This resource manages the create forms for the managedThreadFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedThreadFactoryTemplateCreateForm

This resource manages the create forms for the managedThreadFactoryTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactoryTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/managedThreadFactoryTemplates

This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/managedThreadFactoryTemplates/{name}

This resource manages a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/messagingBridgeCreateForm

This resource manages the create forms for the messagingBridges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MessagingBridgeMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/messagingBridges

This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/messagingBridges/{name}

This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MessagingBridgeMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/migratableTargetCreateForm

This resource manages the create forms for the migratableTargets collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MigratableTargetMBean entity populated with default values that can be customized then posted (using the POST method) to the migratableTargets collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MigratableTargetMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/migratableTargets

This resource manages a collection of weblogic.management.configuration.MigratableTargetMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MigratableTargetMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MigratableTargetMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MigratableTargetMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MigratableTargetMBean entity.

/management/weblogic/{version}/edit/migratableTargets/{name}

This resource manages a weblogic.management.configuration.MigratableTargetMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MigratableTargetMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MigratableTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MigratableTargetMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MigratableTargetMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MigratableTargetMBean entity.

/management/weblogic/{version}/edit/optionalFeatureDeployment

This resource manages a weblogic.management.configuration.OptionalFeatureDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OptionalFeatureDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OptionalFeatureDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatureCreateForm

This resource manages the create forms for the optionalFeatures collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.OptionalFeatureMBean entity populated with default values that can be customized then posted (using the POST method) to the optionalFeatures collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OptionalFeatureMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatures

This resource manages a collection of weblogic.management.configuration.OptionalFeatureMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.OptionalFeatureMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.OptionalFeatureMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.OptionalFeatureMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OptionalFeatureMBean entity.

/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatures/{name}

This resource manages a weblogic.management.configuration.OptionalFeatureMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.OptionalFeatureMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.OptionalFeatureMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.OptionalFeatureMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OptionalFeatureMBean entity.

/management/weblogic/{version}/edit/osgiFrameworkCreateForm

This resource manages the create forms for the osgiFrameworks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/osgiFrameworks

This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/osgiFrameworks/{name}

This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/partitionCreateForm

This resource manages the create forms for the partitions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.PartitionMBean entity populated with default values that can be customized then posted (using the POST method) to the partitions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions

This resource manages a collection of weblogic.management.configuration.PartitionMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.PartitionMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.PartitionMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.PartitionMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.PartitionMBean entity.

/management/weblogic/{version}/edit/partitions/{name}

This resource manages a weblogic.management.configuration.PartitionMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.PartitionMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.PartitionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.PartitionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.PartitionMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget

This resource manages a weblogic.management.configuration.AdminVirtualTargetMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AdminVirtualTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AdminVirtualTargetMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.AdminVirtualTargetMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.AdminVirtualTargetMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget/webServer

This resource manages a weblogic.management.configuration.WebServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WebServerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget/webServer/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServerLogMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigCreateForm

This resource manages the create forms for the coherencePartitionCacheConfigs collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity populated with default values that can be customized then posted (using the POST method) to the coherencePartitionCacheConfigs collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs

This resource manages a collection of weblogic.management.configuration.CoherencePartitionCacheConfigMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CoherencePartitionCacheConfigMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CoherencePartitionCacheConfigMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CoherencePartitionCacheConfigMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}

This resource manages a weblogic.management.configuration.CoherencePartitionCacheConfigMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherencePartitionCacheConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties

This resource manages a collection of weblogic.management.configuration.CoherencePartitionCachePropertyMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.CoherencePartitionCachePropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties/{name}

This resource manages a weblogic.management.configuration.CoherencePartitionCachePropertyMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCachePropertyCreateForm

This resource manages the create forms for the coherencePartitionCacheProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CoherencePartitionCachePropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the coherencePartitionCacheProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/configurationPropertyCreateForm

This resource manages the create forms for the configurationProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/dataSourcePartition

This resource manages a weblogic.management.configuration.DataSourcePartitionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourcePartitionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DataSourcePartitionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DataSourcePartitionMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/findEffectiveServerNames

The resource supports the following methods:

POST

Returns the names of servers for the partition's effective targets, with no duplicates.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a JSON object with a array of string return field.

/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrideCreateForm

This resource manages the create forms for the foreignJNDIProviderOverrides collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviderOverrides collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides

This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}

This resource manages a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinkCreateForm

This resource manages the create forms for the foreignJNDILinks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDILinkOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks

This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkOverrideMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDILinkOverrideMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ForeignJNDILinkOverrideMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks/{name}

This resource manages a weblogic.management.configuration.ForeignJNDILinkOverrideMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDILinkOverrideMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments

This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}

This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy this application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/update

The resource supports the following methods:

POST

Update this application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries

This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LibraryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LibraryMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}

This resource manages a weblogic.management.configuration.LibraryMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrideCreateForm

This resource manages the create forms for the JDBCSystemResourceOverrides collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResourceOverrides collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides

This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceOverrideMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCSystemResourceOverrideMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCSystemResourceOverrideMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}

This resource manages a weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrideCreateForm

This resource manages the create forms for the JMSSystemResourceOverrides collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResourceOverrides collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides

This resource manages a collection of weblogic.management.configuration.JMSSystemResourceOverrideMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSSystemResourceOverrideMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSSystemResourceOverrideMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSSystemResourceOverrideMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}

This resource manages a weblogic.management.configuration.JMSSystemResourceOverrideMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSSystemResourceOverrideMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.JMSSystemResourceOverrideMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSSystemResourceOverrideMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServerCreateForm

This resource manages the create forms for the foreignServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignServerOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers

This resource manages a collection of weblogic.management.configuration.ForeignServerOverrideMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignServerOverrideMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ForeignServerOverrideMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}

This resource manages a weblogic.management.configuration.ForeignServerOverrideMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignServerOverrideMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.ForeignServerOverrideMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignServerOverrideMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ForeignServerOverrideMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories

This resource manages a collection of weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories/{name}

This resource manages a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactoryCreateForm

This resource manages the create forms for the foreignConnectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinationCreateForm

This resource manages the create forms for the foreignDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignDestinationOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations

This resource manages a collection of weblogic.management.configuration.ForeignDestinationOverrideMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.ForeignDestinationOverrideMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations/{name}

This resource manages a weblogic.management.configuration.ForeignDestinationOverrideMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignDestinationOverrideMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.ForeignDestinationOverrideMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties

This resource manages a collection of weblogic.management.configuration.PartitionPropertyMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.PartitionPropertyMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.PartitionPropertyMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties/{name}

This resource manages a weblogic.management.configuration.PartitionPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.PartitionPropertyMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.PartitionPropertyMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.PartitionPropertyMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIPropertyCreateForm

This resource manages the create forms for the JNDIProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.PartitionPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/JTAPartition

This resource manages a weblogic.management.configuration.JTAPartitionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAPartitionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAPartitionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JTAPartitionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JTAPartitionMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/lookupAvailableTarget

The resource supports the following methods:

POST

Looks up the named available target.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

name

the name of the target to find

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.TargetMBean reference return field.

/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrideCreateForm

This resource manages the create forms for the mailSessionOverrides collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MailSessionOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessionOverrides collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MailSessionOverrideMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrides

This resource manages a collection of weblogic.management.configuration.MailSessionOverrideMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MailSessionOverrideMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MailSessionOverrideMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MailSessionOverrideMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrides/{name}

This resource manages a weblogic.management.configuration.MailSessionOverrideMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MailSessionOverrideMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MailSessionOverrideMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MailSessionOverrideMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MailSessionOverrideMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplateCreateForm

This resource manages the create forms for the managedExecutorServiceTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServiceTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplates

This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplates/{name}

This resource manages a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplateCreateForm

This resource manages the create forms for the managedScheduledExecutorServiceTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServiceTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates

This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates/{name}

This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplateCreateForm

This resource manages the create forms for the managedThreadFactoryTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactoryTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplates

This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplates/{name}

This resource manages a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/partitionLog

This resource manages a weblogic.management.configuration.PartitionLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.PartitionLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionLogMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.PartitionLogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.PartitionLogMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManager

This resource manages a weblogic.management.configuration.PartitionWorkManagerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.PartitionWorkManagerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.PartitionWorkManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.PartitionWorkManagerMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManagerCreateForm

This resource manages the create forms for the partitionWorkManager optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.PartitionWorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the partitionWorkManager optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroupCreateForm

This resource manages the create forms for the resourceGroups collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResourceGroupMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceGroups collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceGroupMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups

This resource manages a collection of weblogic.management.configuration.ResourceGroupMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResourceGroupMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResourceGroupMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ResourceGroupMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceGroupMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}

This resource manages a weblogic.management.configuration.ResourceGroupMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResourceGroupMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ResourceGroupMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceGroupMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ResourceGroupMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceGroupMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments

This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.

If the source path is relative, it is resolved relative to InstallDir/app if InstallDir is not null; otherwise, it is resolved relative to the domain root.

POST accepting multipart/form-data

Use the multi-part form to upload an application from the client to the server and then deploy it.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to deploy an application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}

This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.

The resource supports the following methods:

DELETE

Undeploy an application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy this application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/update

The resource supports the following methods:

POST

Update this application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStoreCreateForm

This resource manages the create forms for the fileStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStores

This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.FileStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.FileStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStores/{name}

This resource manages a weblogic.management.configuration.FileStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/findEffectiveTargets

The resource supports the following methods:

POST

Returns the targets actually used by this resource group, accounting for partition-level defaulting.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a JSON object with a array of weblogic.management.configuration.TargetMBean references return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviderCreateForm

This resource manages the create forms for the foreignJNDIProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders

This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}

This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm

This resource manages the create forms for the foreignJNDILinks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks

This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name}

This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStoreCreateForm

This resource manages the create forms for the JDBCStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores

This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores/{name}

This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResourceCreateForm

This resource manages the create forms for the JDBCSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources

This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}

This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinationCreateForm

This resource manages the create forms for the JMSBridgeDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations

This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations/{name}

This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServerCreateForm

This resource manages the create forms for the JMSServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers

This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSServerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name}

This resource manages a weblogic.management.configuration.JMSServerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile

This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.

The resource supports the following methods:

POST

Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResourceCreateForm

This resource manages the create forms for the JMSSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources

This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}

This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource

This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams

This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams

This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams

This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams

This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams

This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams

This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm

This resource manages the create forms for the connectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm

This resource manages the create forms for the destinationKeys collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys

This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name}

This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm

This resource manages the create forms for the foreignServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm

This resource manages the create forms for the foreignConnectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm

This resource manages the create forms for the foreignDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties

This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key}

This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm

This resource manages the create forms for the JNDIProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm

This resource manages the create forms for the queues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues

This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm

This resource manages the create forms for the quotas collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas

This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm

This resource manages the create forms for the SAFErrorHandlings collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm

This resource manages the create forms for the SAFImportedDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm

This resource manages the create forms for the SAFQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm

This resource manages the create forms for the SAFTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm

This resource manages the create forms for the SAFRemoteContexts collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext

This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm

This resource manages the create forms for the templates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates

This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination

The resource supports the following methods:

POST

Finds the name of the error destination to use when a destination comes from a specific group

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

subDeploymentName

The subDeployment for which to find the quota

Type: string

Response Body

Contains a JSON object with a weblogic.j2ee.descriptor.wl.DestinationBean reference return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm

This resource manages the create forms for the groupParams collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams

This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName}

This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm

This resource manages the create forms for the topics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics

This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm

This resource manages the create forms for the uniformDistributedQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm

This resource manages the create forms for the uniformDistributedTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries

This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LibraryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LibraryMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource is used to deploy libraries that are already on the admininstration server.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.

Use the multi-part form to deploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

POST accepting multipart/form-data

Upload a library from the client to the server then deploy it.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to upload a library from the client to the server then deploy it.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}

This resource manages a weblogic.management.configuration.LibraryMBean instance.

The resource supports the following methods:

DELETE

Undeploy a library.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/lookupTarget

The resource supports the following methods:

POST

Find a particular target with a given name.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

name

the name of the target to find

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.TargetMBean reference return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessionCreateForm

This resource manages the create forms for the mailSessions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessions

This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MailSessionMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MailSessionMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessions/{name}

This resource manages a weblogic.management.configuration.MailSessionMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServiceCreateForm

This resource manages the create forms for the managedExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedExecutorServiceMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm

This resource manages the create forms for the managedScheduledExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories

This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories/{name}

This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedThreadFactoryMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactoryCreateForm

This resource manages the create forms for the managedThreadFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridgeCreateForm

This resource manages the create forms for the messagingBridges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges

This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges/{name}

This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MessagingBridgeMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworkCreateForm

This resource manages the create forms for the osgiFrameworks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks

This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks/{name}

This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgentCreateForm

This resource manages the create forms for the SAFAgents collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents

This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SAFAgentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SAFAgentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}

This resource manages a weblogic.management.configuration.SAFAgentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile

This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResourceCreateForm

This resource manages the create forms for the WLDFSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources

This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}

This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm

This resource manages the create forms for the harvestedTypes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm

This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm

This resource manages the create forms for the actions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm

This resource manages the create forms for the arrayProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin

GET

Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm

This resource manages the create forms for the mapProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm

This resource manages the create forms for the heapDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm

This resource manages the create forms for the imageNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm

This resource manages the create forms for the JMSNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm

This resource manages the create forms for the JMXNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm

This resource manages the create forms for the logActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm

This resource manages the create forms for the RESTNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm

This resource manages the create forms for the scaleDownActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm

This resource manages the create forms for the scaleUpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm

This resource manages the create forms for the scriptActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm

This resource manages the create forms for the SMTPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm

This resource manages the create forms for the SNMPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm

This resource manages the create forms for the threadDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm

This resource manages the create forms for the watches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager

This resource manages a weblogic.management.configuration.ResourceManagerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResourceManagerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ResourceManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceManagerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ResourceManagerMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceManagerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization

This resource manages a weblogic.management.configuration.CpuUtilizationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CpuUtilizationMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.CpuUtilizationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CpuUtilizationMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CpuUtilizationMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CpuUtilizationMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint

This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareConstraintMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraintCreateForm

This resource manages the create forms for the fairShareConstraint optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggerCreateForm

This resource manages the create forms for the triggers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.TriggerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.TriggerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilizationCreateForm

This resource manages the create forms for the cpuUtilization optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CpuUtilizationMBean entity populated with default values that can be customized then posted (using the POST method) to the cpuUtilization optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CpuUtilizationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen

This resource manages a weblogic.management.configuration.FileOpenMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FileOpenMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.FileOpenMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileOpenMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.FileOpenMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.FileOpenMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggerCreateForm

This resource manages the create forms for the triggers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.TriggerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.TriggerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpenCreateForm

This resource manages the create forms for the fileOpen optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FileOpenMBean entity populated with default values that can be customized then posted (using the POST method) to the fileOpen optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileOpenMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained

This resource manages a weblogic.management.configuration.HeapRetainedMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.HeapRetainedMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.HeapRetainedMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.HeapRetainedMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.HeapRetainedMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.HeapRetainedMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraint

This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareConstraintMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.FairShareConstraintMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraintCreateForm

This resource manages the create forms for the fairShareConstraint optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggerCreateForm

This resource manages the create forms for the triggers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.TriggerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.TriggerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetainedCreateForm

This resource manages the create forms for the heapRetained optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.HeapRetainedMBean entity populated with default values that can be customized then posted (using the POST method) to the heapRetained optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.HeapRetainedMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/resourceManager/restartLoopProtection

This resource manages a weblogic.management.configuration.RestartLoopProtectionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.RestartLoopProtectionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/resourceManagerCreateForm

This resource manages the create forms for the resourceManager optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResourceManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceManager optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/selfTuning

This resource manages a weblogic.management.configuration.SelfTuningMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SelfTuningMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SelfTuningMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SelfTuningMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SelfTuningMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacities

This resource manages a collection of weblogic.management.configuration.CapacityMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CapacityMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CapacityMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CapacityMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CapacityMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacities/{name}

This resource manages a weblogic.management.configuration.CapacityMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CapacityMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.CapacityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CapacityMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CapacityMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CapacityMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacityCreateForm

This resource manages the create forms for the capacities collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CapacityMBean entity populated with default values that can be customized then posted (using the POST method) to the capacities collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CapacityMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClassCreateForm

This resource manages the create forms for the contextRequestClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ContextRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the contextRequestClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ContextRequestClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses

This resource manages a collection of weblogic.management.configuration.ContextRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ContextRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ContextRequestClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ContextRequestClassMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}

This resource manages a weblogic.management.configuration.ContextRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ContextRequestClassMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ContextRequestClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ContextRequestClassMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ContextRequestClassMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm

This resource manages the create forms for the contextCases collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ContextCaseMBean entity populated with default values that can be customized then posted (using the POST method) to the contextCases collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases

This resource manages a collection of weblogic.management.configuration.ContextCaseMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ContextCaseMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ContextCaseMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ContextCaseMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}

This resource manages a weblogic.management.configuration.ContextCaseMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ContextCaseMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ContextCaseMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ContextCaseMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ContextCaseMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ContextCaseMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass

This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareRequestClassMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.FairShareRequestClassMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm

This resource manages the create forms for the fairShareRequestClass optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClass optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass

This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.ResponseTimeRequestClassMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm

This resource manages the create forms for the responseTimeRequestClass optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClass optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClassCreateForm

This resource manages the create forms for the fairShareRequestClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClasses

This resource manages a collection of weblogic.management.configuration.FairShareRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.FairShareRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.FairShareRequestClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.FairShareRequestClassMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClasses/{name}

This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareRequestClassMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraintCreateForm

This resource manages the create forms for the maxThreadsConstraints collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MaxThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the maxThreadsConstraints collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MaxThreadsConstraintMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraints

This resource manages a collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MaxThreadsConstraintMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MaxThreadsConstraintMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraints/{name}

This resource manages a weblogic.management.configuration.MaxThreadsConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MaxThreadsConstraintMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MaxThreadsConstraintMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraintCreateForm

This resource manages the create forms for the minThreadsConstraints collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MinThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the minThreadsConstraints collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MinThreadsConstraintMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraints

This resource manages a collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MinThreadsConstraintMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MinThreadsConstraintMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraints/{name}

This resource manages a weblogic.management.configuration.MinThreadsConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MinThreadsConstraintMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MinThreadsConstraintMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClassCreateForm

This resource manages the create forms for the responseTimeRequestClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses

This resource manages a collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResponseTimeRequestClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ResponseTimeRequestClassMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses/{name}

This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagerCreateForm

This resource manages the create forms for the workManagers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WorkManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers

This resource manages a collection of weblogic.management.configuration.WorkManagerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WorkManagerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WorkManagerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WorkManagerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WorkManagerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}

This resource manages a weblogic.management.configuration.WorkManagerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WorkManagerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WorkManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WorkManagerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WorkManagerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WorkManagerMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTrigger

This resource manages a weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.

The resource supports the following methods:

POST

Update this weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm

This resource manages the create forms for the workManagerShutdownTrigger optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagerShutdownTrigger optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/systemFileSystem

This resource manages a weblogic.management.configuration.PartitionFileSystemMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.PartitionFileSystemMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionFileSystemMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.PartitionFileSystemMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/userFileSystem

This resource manages a weblogic.management.configuration.PartitionUserFileSystemMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.PartitionUserFileSystemMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionUserFileSystemMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/webService

This resource manages a weblogic.management.configuration.WebServiceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServiceMBean entity.

/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering

This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence

This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServicePersistenceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServicePersistenceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm

This resource manages the create forms for the webServiceLogicalStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebServiceLogicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServiceLogicalStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores

This resource manages a collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.WebServiceLogicalStoreMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores/{name}

This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm

This resource manages the create forms for the webServicePhysicalStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebServicePhysicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServicePhysicalStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores

This resource manages a collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.WebServicePhysicalStoreMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores/{name}

This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceReliability

This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceReliabilityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitionWorkManagerCreateForm

This resource manages the create forms for the partitionWorkManagers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.PartitionWorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the partitionWorkManagers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/partitionWorkManagers

This resource manages a collection of weblogic.management.configuration.PartitionWorkManagerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.PartitionWorkManagerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.PartitionWorkManagerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.PartitionWorkManagerMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/partitionWorkManagers/{name}

This resource manages a weblogic.management.configuration.PartitionWorkManagerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.PartitionWorkManagerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.PartitionWorkManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/replicatedStoreCreateForm

This resource manages the create forms for the replicatedStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ReplicatedStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the replicatedStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ReplicatedStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/replicatedStores

This resource manages a collection of weblogic.management.configuration.ReplicatedStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ReplicatedStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ReplicatedStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ReplicatedStoreMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ReplicatedStoreMBean entity.

/management/weblogic/{version}/edit/replicatedStores/{name}

This resource manages a weblogic.management.configuration.ReplicatedStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ReplicatedStoreMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ReplicatedStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ReplicatedStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ReplicatedStoreMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ReplicatedStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroupCreateForm

This resource manages the create forms for the resourceGroups collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResourceGroupMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceGroups collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceGroupMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups

This resource manages a collection of weblogic.management.configuration.ResourceGroupMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResourceGroupMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResourceGroupMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ResourceGroupMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceGroupMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}

This resource manages a weblogic.management.configuration.ResourceGroupMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResourceGroupMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ResourceGroupMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceGroupMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ResourceGroupMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceGroupMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments

This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.

If the source path is relative, it is resolved relative to InstallDir/app if InstallDir is not null; otherwise, it is resolved relative to the domain root.

POST accepting multipart/form-data

Use the multi-part form to upload an application from the client to the server and then deploy it.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to deploy an application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}

This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.

The resource supports the following methods:

DELETE

Undeploy an application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy this application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/update

The resource supports the following methods:

POST

Update this application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroups/{name}/fileStoreCreateForm

This resource manages the create forms for the fileStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/fileStores

This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.FileStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.FileStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/fileStores/{name}

This resource manages a weblogic.management.configuration.FileStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/findEffectiveTargets

The resource supports the following methods:

POST

Returns the targets actually used by this resource group, accounting for partition-level defaulting.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a JSON object with a array of weblogic.management.configuration.TargetMBean references return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviderCreateForm

This resource manages the create forms for the foreignJNDIProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders

This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ForeignJNDIProviderMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}

This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm

This resource manages the create forms for the foreignJNDILinks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks

This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name}

This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStoreCreateForm

This resource manages the create forms for the JDBCStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStores

This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStores/{name}

This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResourceCreateForm

This resource manages the create forms for the JDBCSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources

This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}

This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinationCreateForm

This resource manages the create forms for the JMSBridgeDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinations

This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSBridgeDestinationMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinations/{name}

This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServerCreateForm

This resource manages the create forms for the JMSServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers

This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSServerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers/{name}

This resource manages a weblogic.management.configuration.JMSServerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile

This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSMessageLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResourceCreateForm

This resource manages the create forms for the JMSSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources

This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}

This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource

This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams

This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams

This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams

This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams

This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams

This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams

This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm

This resource manages the create forms for the connectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm

This resource manages the create forms for the destinationKeys collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys

This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name}

This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm

This resource manages the create forms for the foreignServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm

This resource manages the create forms for the foreignConnectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm

This resource manages the create forms for the foreignDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties

This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key}

This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm

This resource manages the create forms for the JNDIProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm

This resource manages the create forms for the queues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues

This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm

This resource manages the create forms for the quotas collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas

This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm

This resource manages the create forms for the SAFErrorHandlings collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm

This resource manages the create forms for the SAFImportedDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm

This resource manages the create forms for the SAFQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm

This resource manages the create forms for the SAFTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm

This resource manages the create forms for the SAFRemoteContexts collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext

This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm

This resource manages the create forms for the templates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates

This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination

The resource supports the following methods:

POST

Finds the name of the error destination to use when a destination comes from a specific group

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

subDeploymentName

The subDeployment for which to find the quota

Type: string

Response Body

Contains a JSON object with a weblogic.j2ee.descriptor.wl.DestinationBean reference return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm

This resource manages the create forms for the groupParams collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams

This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName}

This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm

This resource manages the create forms for the topics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics

This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm

This resource manages the create forms for the uniformDistributedQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm

This resource manages the create forms for the uniformDistributedTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries

This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LibraryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LibraryMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource is used to deploy libraries that are already on the admininstration server.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.

Use the multi-part form to deploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

POST accepting multipart/form-data

Upload a library from the client to the server then deploy it.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to upload a library from the client to the server then deploy it.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}

This resource manages a weblogic.management.configuration.LibraryMBean instance.

The resource supports the following methods:

DELETE

Undeploy a library.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/lookupTarget

The resource supports the following methods:

POST

Find a particular target with a given name.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

name

the name of the target to find

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.TargetMBean reference return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessionCreateForm

This resource manages the create forms for the mailSessions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MailSessionMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessions

This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MailSessionMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MailSessionMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessions/{name}

This resource manages a weblogic.management.configuration.MailSessionMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MailSessionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServiceCreateForm

This resource manages the create forms for the managedExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedExecutorServiceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedExecutorServiceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ManagedExecutorServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm

This resource manages the create forms for the managedScheduledExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactories

This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedThreadFactoryMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactories/{name}

This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedThreadFactoryMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ManagedThreadFactoryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactoryCreateForm

This resource manages the create forms for the managedThreadFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridgeCreateForm

This resource manages the create forms for the messagingBridges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MessagingBridgeMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridges

This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridges/{name}

This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MessagingBridgeMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworkCreateForm

This resource manages the create forms for the osgiFrameworks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworks

This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworks/{name}

This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgentCreateForm

This resource manages the create forms for the SAFAgents collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents

This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SAFAgentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SAFAgentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents/{name}

This resource manages a weblogic.management.configuration.SAFAgentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile

This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResourceCreateForm

This resource manages the create forms for the WLDFSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources

This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}

This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm

This resource manages the create forms for the harvestedTypes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm

This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm

This resource manages the create forms for the actions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm

This resource manages the create forms for the arrayProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin

GET

Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm

This resource manages the create forms for the mapProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm

This resource manages the create forms for the heapDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm

This resource manages the create forms for the imageNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm

This resource manages the create forms for the JMSNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm

This resource manages the create forms for the JMXNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm

This resource manages the create forms for the logActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm

This resource manages the create forms for the RESTNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm

This resource manages the create forms for the scaleDownActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm

This resource manages the create forms for the scaleUpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm

This resource manages the create forms for the scriptActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm

This resource manages the create forms for the SMTPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm

This resource manages the create forms for the SNMPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm

This resource manages the create forms for the threadDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm

This resource manages the create forms for the watches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplateCreateForm

This resource manages the create forms for the resourceGroupTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResourceGroupTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceGroupTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceGroupTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates

This resource manages a collection of weblogic.management.configuration.ResourceGroupTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResourceGroupTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResourceGroupTemplateMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ResourceGroupTemplateMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}

This resource manages a weblogic.management.configuration.ResourceGroupTemplateMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResourceGroupTemplateMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ResourceGroupTemplateMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceGroupTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments

This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.

If the source path is relative, it is resolved relative to InstallDir/app if InstallDir is not null; otherwise, it is resolved relative to the domain root.

POST accepting multipart/form-data

Use the multi-part form to upload an application from the client to the server and then deploy it.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to deploy an application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}

This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.

The resource supports the following methods:

DELETE

Undeploy an application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.AppDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy this application.

  • sourcePath: the deployment to upload (required)

  • planPath: the deployment plan to upload (optional)

  • model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/update

The resource supports the following methods:

POST

Update this application.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStoreCreateForm

This resource manages the create forms for the fileStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStores

This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.FileStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.FileStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStores/{name}

This resource manages a weblogic.management.configuration.FileStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.FileStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviderCreateForm

This resource manages the create forms for the foreignJNDIProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders

This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ForeignJNDIProviderMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}

This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm

This resource manages the create forms for the foreignJNDILinks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks

This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name}

This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStoreCreateForm

This resource manages the create forms for the JDBCStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStores

This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStores/{name}

This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCStoreMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResourceCreateForm

This resource manages the create forms for the JDBCSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources

This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JDBCSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}

This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams

This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinationCreateForm

This resource manages the create forms for the JMSBridgeDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations

This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSBridgeDestinationMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations/{name}

This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServerCreateForm

This resource manages the create forms for the JMSServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers

This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSServerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers/{name}

This resource manages a weblogic.management.configuration.JMSServerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSServerMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile

This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.

The resource supports the following methods:

POST

Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResourceCreateForm

This resource manages the create forms for the JMSSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources

This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}

This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JMSSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource

This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams

This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams

This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams

This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams

This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams

This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams

This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm

This resource manages the create forms for the connectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm

This resource manages the create forms for the destinationKeys collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys

This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name}

This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm

This resource manages the create forms for the foreignServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm

This resource manages the create forms for the foreignConnectionFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm

This resource manages the create forms for the foreignDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties

This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key}

This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm

This resource manages the create forms for the JNDIProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm

This resource manages the create forms for the queues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues

This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.QueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm

This resource manages the create forms for the quotas collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas

This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name}

This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm

This resource manages the create forms for the SAFErrorHandlings collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm

This resource manages the create forms for the SAFImportedDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm

This resource manages the create forms for the SAFQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm

This resource manages the create forms for the SAFTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm

This resource manages the create forms for the SAFRemoteContexts collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext

This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm

This resource manages the create forms for the templates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates

This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination

The resource supports the following methods:

POST

Finds the name of the error destination to use when a destination comes from a specific group

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

subDeploymentName

The subDeployment for which to find the quota

Type: string

Response Body

Contains a JSON object with a weblogic.j2ee.descriptor.wl.DestinationBean reference return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm

This resource manages the create forms for the groupParams collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams

This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName}

This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm

This resource manages the create forms for the topics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics

This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.TopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm

This resource manages the create forms for the uniformDistributedQueues collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm

This resource manages the create forms for the uniformDistributedTopics collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.

The resource supports the following methods:

POST

Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

POST

Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries

This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.LibraryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.LibraryMBean entities.

This method can return the following links:

POST

The resource supports the following methods:

POST accepting application/json

This resource is used to deploy libraries that are already on the admininstration server.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.

Use the multi-part form to deploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

POST accepting multipart/form-data

Upload a library from the client to the server then deploy it.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

Request Body

Use the multi-part form to upload a library from the client to the server then deploy it.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}

This resource manages a weblogic.management.configuration.LibraryMBean instance.

The resource supports the following methods:

DELETE

Undeploy a library.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.LibraryMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/redeploy

The resource supports the following methods:

POST

Use the multi-part form to redeploy a library.

  • sourcePath: the deployment to upload (required)

  • model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessionCreateForm

This resource manages the create forms for the mailSessions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MailSessionMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessions

This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MailSessionMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MailSessionMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessions/{name}

This resource manages a weblogic.management.configuration.MailSessionMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.MailSessionMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServiceCreateForm

This resource manages the create forms for the managedExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedExecutorServiceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedExecutorServiceMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServiceCreateForm

This resource manages the create forms for the managedScheduledExecutorServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices

This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices/{name}

This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactories

This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ManagedThreadFactoryMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactories/{name}

This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ManagedThreadFactoryMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactoryCreateForm

This resource manages the create forms for the managedThreadFactories collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridgeCreateForm

This resource manages the create forms for the messagingBridges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MessagingBridgeMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridges

This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridges/{name}

This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MessagingBridgeMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.MessagingBridgeMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworkCreateForm

This resource manages the create forms for the osgiFrameworks collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworks

This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworks/{name}

This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgentCreateForm

This resource manages the create forms for the SAFAgents collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents

This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SAFAgentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SAFAgentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents/{name}

This resource manages a weblogic.management.configuration.SAFAgentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile

This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResourceCreateForm

This resource manages the create forms for the WLDFSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources

This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}

This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm

This resource manages the create forms for the harvestedTypes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm

This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm

This resource manages the create forms for the actions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm

This resource manages the create forms for the arrayProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin

GET

Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm

This resource manages the create forms for the mapProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm

This resource manages the create forms for the heapDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm

This resource manages the create forms for the imageNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm

This resource manages the create forms for the JMSNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm

This resource manages the create forms for the JMXNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm

This resource manages the create forms for the logActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm

This resource manages the create forms for the RESTNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm

This resource manages the create forms for the scaleDownActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm

This resource manages the create forms for the scaleUpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm

This resource manages the create forms for the scriptActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm

This resource manages the create forms for the SMTPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm

This resource manages the create forms for the SNMPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm

This resource manages the create forms for the threadDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm

This resource manages the create forms for the watches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.

/management/weblogic/{version}/edit/resourceManagement

This resource manages a weblogic.management.configuration.ResourceManagementMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ResourceManagementMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceManagementMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ResourceManagementMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceManagementMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagerCreateForm

This resource manages the create forms for the resourceManagers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResourceManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceManagers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/resourceManagement/resourceManagers

This resource manages a collection of weblogic.management.configuration.ResourceManagerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResourceManagerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResourceManagerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ResourceManagerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceManagerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}

This resource manages a weblogic.management.configuration.ResourceManagerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResourceManagerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ResourceManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceManagerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ResourceManagerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ResourceManagerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization

This resource manages a weblogic.management.configuration.CpuUtilizationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CpuUtilizationMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.CpuUtilizationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CpuUtilizationMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CpuUtilizationMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CpuUtilizationMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraint

This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareConstraintMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraintCreateForm

This resource manages the create forms for the fairShareConstraint optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggerCreateForm

This resource manages the create forms for the triggers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.TriggerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilizationCreateForm

This resource manages the create forms for the cpuUtilization optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CpuUtilizationMBean entity populated with default values that can be customized then posted (using the POST method) to the cpuUtilization optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen

This resource manages a weblogic.management.configuration.FileOpenMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FileOpenMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.FileOpenMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FileOpenMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.FileOpenMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.FileOpenMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggerCreateForm

This resource manages the create forms for the triggers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.TriggerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpenCreateForm

This resource manages the create forms for the fileOpen optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FileOpenMBean entity populated with default values that can be customized then posted (using the POST method) to the fileOpen optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained

This resource manages a weblogic.management.configuration.HeapRetainedMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.HeapRetainedMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.HeapRetainedMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.HeapRetainedMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.HeapRetainedMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.HeapRetainedMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraint

This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareConstraintMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraintCreateForm

This resource manages the create forms for the fairShareConstraint optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggerCreateForm

This resource manages the create forms for the triggers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.TriggerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.TriggerMBean entity.

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetainedCreateForm

This resource manages the create forms for the heapRetained optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.HeapRetainedMBean entity populated with default values that can be customized then posted (using the POST method) to the heapRetained optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/restartLoopProtection

This resource manages a weblogic.management.configuration.RestartLoopProtectionMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/restfulManagementServices

This resource manages a weblogic.management.configuration.RestfulManagementServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.RestfulManagementServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.RestfulManagementServicesMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SAFAgentCreateForm

This resource manages the create forms for the SAFAgents collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SAFAgents

This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SAFAgentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SAFAgentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/SAFAgents/{name}

This resource manages a weblogic.management.configuration.SAFAgentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SAFAgentMBean entity.

/management/weblogic/{version}/edit/SAFAgents/{name}/JMSSAFMessageLogFile

This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/search

The resource supports the following methods:

POST

Search the edit tree.

Request Body

The search request body includes the search criteria.

Response Body

The search response includes the results of the search.

/management/weblogic/{version}/edit/securityConfiguration

This resource manages a weblogic.management.configuration.SecurityConfigurationMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SecurityConfigurationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SecurityConfigurationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/certRevoc

This resource manages a weblogic.management.configuration.CertRevocMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CertRevocMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CertRevocMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CertRevocMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CertRevocMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCaCreateForm

This resource manages the create forms for the certRevocCas collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CertRevocCaMBean entity populated with default values that can be customized then posted (using the POST method) to the certRevocCas collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CertRevocCaMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCas

This resource manages a collection of weblogic.management.configuration.CertRevocCaMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CertRevocCaMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CertRevocCaMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CertRevocCaMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CertRevocCaMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCas/{name}

This resource manages a weblogic.management.configuration.CertRevocCaMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CertRevocCaMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.CertRevocCaMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.CertRevocCaMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CertRevocCaMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/JASPIC

This resource manages a weblogic.management.configuration.JASPICMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JASPICMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JASPICMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JASPICMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.JASPICMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviderCreateForm

This resource manages the create forms for the authConfigProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.AuthConfigProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the authConfigProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AuthConfigProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviders

This resource manages a collection of weblogic.management.configuration.AuthConfigProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AuthConfigProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.AuthConfigProviderMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.AuthConfigProviderMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.AuthConfigProviderMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviders/{name}

This resource manages a weblogic.management.configuration.AuthConfigProviderMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.AuthConfigProviderMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.AuthConfigProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.AuthConfigProviderMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.AuthConfigProviderMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/realmCreateForm

This resource manages the create forms for the realms collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.RealmMBean entity populated with default values that can be customized then posted (using the POST method) to the realms collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.RealmMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms

This resource manages a collection of weblogic.management.security.RealmMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.RealmMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.RealmMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.security.RealmMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.security.RealmMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}

This resource manages a weblogic.management.security.RealmMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.RealmMBean instance.

Roles

Admin

GET

Get this weblogic.management.security.RealmMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.RealmMBean entity.

This method can return the following links:

POST

Update this weblogic.management.security.RealmMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.security.RealmMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicator

This resource manages a weblogic.management.security.authorization.AdjudicatorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.authorization.AdjudicatorMBean instance.

Roles

Admin

GET

Get this weblogic.management.security.authorization.AdjudicatorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.AdjudicatorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicatorCreateForm

This resource manages the create forms for the adjudicator optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.authorization.AdjudicatorMBean entity populated with default values that can be customized then posted (using the POST method) to the adjudicator optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.AdjudicatorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditorCreateForm

This resource manages the create forms for the auditors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.audit.AuditorMBean entity populated with default values that can be customized then posted (using the POST method) to the auditors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.audit.AuditorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditors

This resource manages a collection of weblogic.management.security.audit.AuditorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.audit.AuditorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.audit.AuditorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.security.audit.AuditorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.security.audit.AuditorMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditors/{name}

This resource manages a weblogic.management.security.audit.AuditorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.audit.AuditorMBean instance.

Roles

Admin

GET

Get this weblogic.management.security.audit.AuditorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.audit.AuditorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviderCreateForm

This resource manages the create forms for the authenticationProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.authentication.AuthenticationProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the authenticationProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviders

This resource manages a collection of weblogic.management.security.authentication.AuthenticationProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authentication.AuthenticationProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.security.authentication.AuthenticationProviderMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviders/{name}

This resource manages a weblogic.management.security.authentication.AuthenticationProviderMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authentication.AuthenticationProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authentication.AuthenticationProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizerCreateForm

This resource manages the create forms for the authorizers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.authorization.AuthorizerMBean entity populated with default values that can be customized then posted (using the POST method) to the authorizers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.AuthorizerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizers

This resource manages a collection of weblogic.management.security.authorization.AuthorizerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authorization.AuthorizerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.authorization.AuthorizerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.security.authorization.AuthorizerMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizers/{name}

This resource manages a weblogic.management.security.authorization.AuthorizerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.authorization.AuthorizerMBean instance.

Roles

Admin

GET

Get this weblogic.management.security.authorization.AuthorizerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.AuthorizerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviderCreateForm

This resource manages the create forms for the certPathProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.pk.CertPathProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the certPathProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviders

This resource manages a collection of weblogic.management.security.pk.CertPathProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.pk.CertPathProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.pk.CertPathProviderMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.security.pk.CertPathProviderMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.security.pk.CertPathProviderMBean entity.

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviders/{name}

This resource manages a weblogic.management.security.pk.CertPathProviderMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.pk.CertPathProviderMBean instance.

Roles

Admin

GET

Get this weblogic.management.security.pk.CertPathProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.pk.CertPathProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMapperCreateForm

This resource manages the create forms for the credentialMappers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.credentials.CredentialMapperMBean entity populated with default values that can be customized then posted (using the POST method) to the credentialMappers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMappers

This resource manages a collection of weblogic.management.security.credentials.CredentialMapperMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.credentials.CredentialMapperMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.credentials.CredentialMapperMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.security.credentials.CredentialMapperMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMappers/{name}

This resource manages a weblogic.management.security.credentials.CredentialMapperMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.credentials.CredentialMapperMBean instance.

Roles

Admin

GET

Get this weblogic.management.security.credentials.CredentialMapperMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.credentials.CredentialMapperMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidatorCreateForm

This resource manages the create forms for the passwordValidators collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.authentication.PasswordValidatorMBean entity populated with default values that can be customized then posted (using the POST method) to the passwordValidators collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidators

This resource manages a collection of weblogic.management.security.authentication.PasswordValidatorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authentication.PasswordValidatorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.authentication.PasswordValidatorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.security.authentication.PasswordValidatorMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidators/{name}

This resource manages a weblogic.management.security.authentication.PasswordValidatorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authentication.PasswordValidatorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authentication.PasswordValidatorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStore

This resource manages a weblogic.management.security.RDBMSSecurityStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.RDBMSSecurityStoreMBean instance.

Roles

Admin

Example

Example 1   Delete the weblogic.management.security.RDBMSSecurityStoreMBean Instance

This example uses the DELETE method to remove a weblogic.management.security.RDBMSSecurityStoreMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X DELETE http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore

Example Response

HTTP/1.1 200 OK

Response Body:
{}

GET

Get this weblogic.management.security.RDBMSSecurityStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.RDBMSSecurityStoreMBean entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.security.RDBMSSecurityStoreMBean Instance

This example uses the GET method to view this weblogic.management.security.RDBMSSecurityStoreMBean 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/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm"
        },
        {
            "rel": "realm",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore"
        },
        {
            "rel": "create-form",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm"
        }
    ],
    "identity": [
        "securityConfiguration",
        "realms",
        "myrealm",
        "RDBMSSecurityStore"
    ],
    "connectionProperties": null,
    "JMSTopicConnectionFactory": null,
    "password": null,
    "JMSTopic": null,
    "JNDIPassword": null,
    "name": "MyRDBMSSecurityStore",
    "JMSExceptionReconnectAttempts": 0,
    "connectionURL": "MyConnectionUrl",
    "driverName": "MyDriverName",
    "JNDIUsername": null,
    "notificationProperties": null,
    "username": "MyUserName",
    "realm": [
        "securityConfiguration",
        "realms",
        "myrealm"
    ]
}

POST

Update this weblogic.management.security.RDBMSSecurityStoreMBean instance if it exists; otherwise, create it.

Roles

Admin

Request Body

Must contain a weblogic.management.security.RDBMSSecurityStoreMBean entity.

Example

Example 1   Create the weblogic.management.security.RDBMSSecurityStoreMBean Optional Singleton Instance

This example uses the POST method to create a weblogic.management.security.RDBMSSecurityStoreMBean optional singleton instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{
  name:          'MyRDBMSSecurityStore',
  connectionURL: 'MyConnectionUrl',
  driverName:    'MyDriverName',
  username:      'MyUserName'
}" \
-X POST http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore

Example Response

HTTP/1.1 201 Created

Location: http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore

Response Body:
{}
Example 2   Update the weblogic.management.security.RDBMSSecurityStoreMBean Optional Singleton Instance

This example uses the POST method to update a weblogic.management.security.RDBMSSecurityStoreMBean optional singleton instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{
  driverName: 'YourDriverName',
  username:   'YourUserName'
}" \
-X POST http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore

Example Response

HTTP/1.1 200 OK

Response Body:
{}

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStoreCreateForm

This resource manages the create forms for the RDBMSSecurityStore optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.RDBMSSecurityStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the RDBMSSecurityStore optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Example

Example 1   Get a weblogic.management.security.RDBMSSecurityStoreMBean Create Form

This example uses the GET method to retrieve a pre-populated weblogic.management.security.RDBMSSecurityStoreMBean entity that can be modified and posted (using the POST method) to corresponding singleton to create a new weblogic.management.security.RDBMSSecurityStoreMBean 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/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm"
        },
        {
            "rel": "create",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore"
        }
    ],
    "connectionProperties": null,
    "JMSTopicConnectionFactory": null,
    "password": null,
    "JMSTopic": null,
    "JNDIPassword": null,
    "JMSExceptionReconnectAttempts": 0,
    "connectionURL": null,
    "driverName": null,
    "JNDIUsername": null,
    "notificationProperties": null,
    "username": null,
    "name": null
}

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMapperCreateForm

This resource manages the create forms for the roleMappers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.security.authorization.RoleMapperMBean entity populated with default values that can be customized then posted (using the POST method) to the roleMappers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.RoleMapperMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMappers

This resource manages a collection of weblogic.management.security.authorization.RoleMapperMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authorization.RoleMapperMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.authorization.RoleMapperMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.security.authorization.RoleMapperMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMappers/{name}

This resource manages a weblogic.management.security.authorization.RoleMapperMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.security.authorization.RoleMapperMBean instance.

Roles

Admin

GET

Get this weblogic.management.security.authorization.RoleMapperMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.RoleMapperMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/userLockoutManager

This resource manages a weblogic.management.security.authentication.UserLockoutManagerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authentication.UserLockoutManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authentication.UserLockoutManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/securityConfiguration/secureMode

This resource manages a weblogic.management.configuration.SecureModeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SecureModeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SecureModeMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SecureModeMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SecureModeMBean entity.

/management/weblogic/{version}/edit/selfTuning

This resource manages a weblogic.management.configuration.SelfTuningMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SelfTuningMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SelfTuningMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SelfTuningMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SelfTuningMBean entity.

/management/weblogic/{version}/edit/selfTuning/capacities

This resource manages a collection of weblogic.management.configuration.CapacityMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CapacityMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CapacityMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.CapacityMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CapacityMBean entity.

/management/weblogic/{version}/edit/selfTuning/capacities/{name}

This resource manages a weblogic.management.configuration.CapacityMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.CapacityMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.CapacityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CapacityMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.CapacityMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.CapacityMBean entity.

/management/weblogic/{version}/edit/selfTuning/capacityCreateForm

This resource manages the create forms for the capacities collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.CapacityMBean entity populated with default values that can be customized then posted (using the POST method) to the capacities collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CapacityMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/contextRequestClassCreateForm

This resource manages the create forms for the contextRequestClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ContextRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the contextRequestClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ContextRequestClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses

This resource manages a collection of weblogic.management.configuration.ContextRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ContextRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ContextRequestClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ContextRequestClassMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}

This resource manages a weblogic.management.configuration.ContextRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ContextRequestClassMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ContextRequestClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ContextRequestClassMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ContextRequestClassMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm

This resource manages the create forms for the contextCases collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ContextCaseMBean entity populated with default values that can be customized then posted (using the POST method) to the contextCases collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases

This resource manages a collection of weblogic.management.configuration.ContextCaseMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ContextCaseMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ContextCaseMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ContextCaseMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ContextCaseMBean entity.

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}

This resource manages a weblogic.management.configuration.ContextCaseMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ContextCaseMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ContextCaseMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ContextCaseMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ContextCaseMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ContextCaseMBean entity.

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass

This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareRequestClassMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.FairShareRequestClassMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm

This resource manages the create forms for the fairShareRequestClass optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClass optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass

This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

Roles

Admin

POST

Update this weblogic.management.configuration.ResponseTimeRequestClassMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm

This resource manages the create forms for the responseTimeRequestClass optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClass optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/selfTuning/fairShareRequestClassCreateForm

This resource manages the create forms for the fairShareRequestClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/fairShareRequestClasses

This resource manages a collection of weblogic.management.configuration.FairShareRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.FairShareRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.FairShareRequestClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.FairShareRequestClassMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/fairShareRequestClasses/{name}

This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.FairShareRequestClassMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.FairShareRequestClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraintCreateForm

This resource manages the create forms for the maxThreadsConstraints collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MaxThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the maxThreadsConstraints collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MaxThreadsConstraintMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraints

This resource manages a collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MaxThreadsConstraintMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MaxThreadsConstraintMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraints/{name}

This resource manages a weblogic.management.configuration.MaxThreadsConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MaxThreadsConstraintMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MaxThreadsConstraintMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MaxThreadsConstraintMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/minThreadsConstraintCreateForm

This resource manages the create forms for the minThreadsConstraints collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.MinThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the minThreadsConstraints collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MinThreadsConstraintMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/minThreadsConstraints

This resource manages a collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MinThreadsConstraintMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.MinThreadsConstraintMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/minThreadsConstraints/{name}

This resource manages a weblogic.management.configuration.MinThreadsConstraintMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.MinThreadsConstraintMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.MinThreadsConstraintMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MinThreadsConstraintMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClassCreateForm

This resource manages the create forms for the responseTimeRequestClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClasses

This resource manages a collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResponseTimeRequestClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ResponseTimeRequestClassMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClasses/{name}

This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/selfTuning/workManagerCreateForm

This resource manages the create forms for the workManagers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WorkManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/selfTuning/workManagers

This resource manages a collection of weblogic.management.configuration.WorkManagerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WorkManagerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WorkManagerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WorkManagerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WorkManagerMBean entity.

/management/weblogic/{version}/edit/selfTuning/workManagers/{name}

This resource manages a weblogic.management.configuration.WorkManagerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WorkManagerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WorkManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WorkManagerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WorkManagerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WorkManagerMBean entity.

/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTrigger

This resource manages a weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm

This resource manages the create forms for the workManagerShutdownTrigger optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagerShutdownTrigger optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverCreateForm

This resource manages the create forms for the servers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ServerMBean entity populated with default values that can be customized then posted (using the POST method) to the servers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerMBean entity.

This method can return the following links:

Example

Example 1   Get a weblogic.management.configuration.ServerMBean Create Form

This example uses the GET method to retrieve a pre-populated weblogic.management.configuration.ServerMBean entity that can be modified and posted (using the POST method) to the corresponding collection to create a new weblogic.management.configuration.ServerMBean instance in the collection.

Example Request

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

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/serverCreateForm"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/serverCreateForm"
        },
        {
            "rel": "create",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers"
        }
    ],
    "maxOpenSockCount": -1,
    "interfaceAddress": null,
    "startupTimeout": 0,
    "idleConnectionTimeout": 65,
    "resolveDNSName": false,
    "ignoreSessionsDuringShutdown": false,
    "adminReconnectIntervalSeconds": 10,
    "preferredSecondaryGroup": null,
    "defaultSecureProtocol": "t3s",
    "maxMessageSize": 10000000,
    "stagingDirectoryName": null,
    "outboundPrivateKeyEnabled": false,
    "defaultTGIOPPassword": null,
    "httpTraceSupportEnabled": false,
    "tags": null,
    "useEnhancedIncrementAdvisor": true,
    "completeMessageTimeout": 60,
    "managedServerIndependenceEnabled": true,
    "retryIntervalBeforeMSIMode": 5,
    "nativeIOEnabled": true,
    "startupMode": "RUNNING",
    "externalDNSName": null,
    "JMSConnectionFactoryUnmappedResRefMode": "ReturnDefault",
    "extraEjbcOptions": null,
    "autoMigrationEnabled": null,
    "tunnelingClientPingSecs": 45,
    "instrumentStackTraceEnabled": true,
    "customIdentityKeyStorePassPhrase": null,
    "gracefulShutdownTimeout": 0,
    "outboundEnabled": false,
    "javaStandardTrustKeyStorePassPhrase": null,
    "buzzAddress": null,
    "classpathServletDisabled": false,
    "healthCheckStartDelaySeconds": 120,
    "clientCertProxyEnabled": false,
    "defaultInternalServletsDisabled": false,
    "customIdentityKeyStoreType": null,
    "restartIntervalSeconds": 3600,
    "notes": null,
    "serverLifeCycleTimeoutVal": 30,
    "httpdEnabled": true,
    "javaCompilerPostClassPath": null,
    "buzzPort": 0,
    "keyStores": "DemoIdentityAndDemoTrust",
    "defaultTGIOPUser": "guest",
    "use81StyleExecuteQueues": false,
    "uploadDirectoryName": null,
    "tunnelingClientTimeoutSecs": 40,
    "listenThreadStartDelaySecs": 60,
    "tunnelingEnabled": false,
    "listenAddress": null,
    "acceptBacklog": 300,
    "listenPortEnabled": true,
    "eagerThreadLocalCleanup": false,
    "connectTimeout": 0,
    "printStackTraceInProduction": false,
    "useFusionForLLR": null,
    "clusterWeight": 100,
    "customTrustKeyStorePassPhrase": null,
    "restartDelaySeconds": 0,
    "transactionLogFilePrefix": ".\/",
    "maxConcurrentLongRunningRequests": 100,
    "customTrustKeyStoreFileName": null,
    "socketReaders": -1,
    "threadPoolPercentSocketReaders": 33,
    "JDBCLoginTimeoutSeconds": 0,
    "customTrustKeyStoreType": null,
    "loginTimeoutMillis": 5000,
    "messageIdPrefixEnabled": true,
    "healthCheckIntervalSeconds": 180,
    "useEnhancedPriorityQueueForRequestManager": false,
    "reverseDNSAllowed": false,
    "periodLength": 60000,
    "socketBufferSizeAsChunkSize": false,
    "JDBCLLRTableName": null,
    "buzzEnabled": false,
    "weblogicPluginEnabled": false,
    "useDetailedThreadName": false,
    "stuckThreadTimerInterval": 60,
    "TGIOPEnabled": true,
    "listenersBindEarly": false,
    "JNDITransportableObjectFactoryList": null,
    "DGCIdlePeriodsUntilTimeout": 5,
    "defaultIIOPUser": null,
    "logRemoteExceptionsEnabled": false,
    "transactionLogFileWritePolicy": "Direct-Write",
    "defaultProtocol": "t3",
    "replicationPorts": null,
    "autoRestart": true,
    "extraRmicOptions": null,
    "customIdentityKeyStoreFileName": null,
    "restartMax": 2,
    "replicationGroup": null,
    "defaultIIOPPassword": null,
    "IIOPEnabled": true,
    "maxConcurrentNewThreads": 100,
    "numOfRetriesBeforeMSIMode": 3,
    "JMSDefaultConnectionFactoriesEnabled": true,
    "allowShrinkingPriorityRequestQueue": true,
    "COMEnabled": false,
    "javaCompilerPreClassPath": null,
    "idlePeriodsUntilTimeout": 4,
    "listenPort": 7001,
    "javaCompiler": "javac",
    "cluster": null,
    "reliableDeliveryPolicy": null,
    "machine": null,
    "XMLEntityCache": null,
    "XMLRegistry": null,
    "coherenceClusterSystemResource": null,
    "serverTemplate": null,
    "candidateMachines": [],
    "name": null
}

/management/weblogic/{version}/edit/servers

This resource manages a collection of weblogic.management.configuration.ServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ServerMBean entities.

This method can return the following links:

Example

Example 1   View the weblogic.management.configuration.ServerMBean Collection

This example uses the GET method to display the weblogic.management.configuration.ServerMBean 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/latest/edit/servers?fields=name,listenPort,listenAddress,listenPortEnabled,machine,candidateMachines&links=self

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "self",
        "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers"
    }],
    "items": [
        {
            "links": [{
                "rel": "self",
                "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer"
            }],
            "listenAddress": "localhost",
            "listenPortEnabled": true,
            "name": "AdminServer",
            "listenPort": 7001,
            "machine": null,
            "candidateMachines": []
        },
        {
            "links": [{
                "rel": "self",
                "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/server1"
            }],
            "listenAddress": "lhost",
            "listenPortEnabled": true,
            "name": "server1",
            "listenPort": 7777,
            "machine": [
                "machines",
                "machine1"
            ],
            "candidateMachines": [
                {"identity": [
                    "machines",
                    "machine1"
                ]},
                {"identity": [
                    "machines",
                    "machine2"
                ]}
            ]
        }
    ]
}

POST

Add a new weblogic.management.configuration.ServerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerMBean entity.

Example

Example 1   Create the weblogic.management.configuration.ServerMBean Instance

This example uses the POST method to create a new weblogic.management.configuration.ServerMBean instance in this collection.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{
  name:          'server1',
  listenPort:    7654,
  listenAddress: 'lhost'
}" \
-X POST http://localhost:7001/management/weblogic/latest/edit/servers

Example Response

HTTP/1.1 201 Created

Location: http://localhost:7001/management/weblogic/latest/edit/servers/server1

Response Body:
{}

/management/weblogic/{version}/edit/servers/{name}

This resource manages a weblogic.management.configuration.ServerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ServerMBean instance.

Roles

Admin

Example

Example 1   Delete the weblogic.management.configuration.ServerMBean Instance

This example uses the DELETE method to remove a weblogic.management.configuration.ServerMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X DELETE http://localhost:7001/management/weblogic/latest/edit/servers/server1

Example Response

HTTP/1.1 200 OK

Response Body:
{}

GET

Get this weblogic.management.configuration.ServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerMBean entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.configuration.ServerMBean Instance

This example uses the GET method to view this weblogic.management.configuration.ServerMBean 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/edit/servers/server1?fields=name,listenPort,listenAddress,listenPortEnabled,machine,candidateMachines&links=self

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "self",
        "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/server1"
    }],
    "listenAddress": "lhost",
    "listenPortEnabled": true,
    "name": "server1",
    "listenPort": 7777,
    "machine": [
        "machines",
        "machine1"
    ],
    "candidateMachines": [
        {"identity": [
            "machines",
            "machine1"
        ]},
        {"identity": [
            "machines",
            "machine2"
        ]}
    ]
}

POST

Update this weblogic.management.configuration.ServerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerMBean entity.

Example

Example 1   Update the weblogic.management.configuration.ServerMBean Instance

This example uses the POST method to update this weblogic.management.configuration.ServerMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{
  listenPort:        7777,
  machine:           [ 'machines', 'machine1' ],
  candidateMachines: [
    { identity: [ 'machines', 'machine1' ] },
    { identity: [ 'machines', 'machine2' ] }
  ]
}" \
-X POST http://localhost:7001/management/weblogic/latest/edit/servers/server1

Example Response

HTTP/1.1 200 OK

Response Body:
{}

/management/weblogic/{version}/edit/servers/{name}/coherenceMemberConfig

This resource manages a weblogic.management.configuration.CoherenceMemberConfigMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceMemberConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceMemberConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/configurationPropertyCreateForm

This resource manages the create forms for the configurationProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/dataSource

This resource manages a weblogic.management.configuration.DataSourceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DataSourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DataSourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.DataSourceMBean entity.

/management/weblogic/{version}/edit/servers/{name}/dataSource/dataSourceLogFile

This resource manages a weblogic.management.configuration.DataSourceLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DataSourceLogFileMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DataSourceLogFileMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DataSourceLogFileMBean entity.

/management/weblogic/{version}/edit/servers/{name}/defaultFileStore

This resource manages a weblogic.management.configuration.DefaultFileStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DefaultFileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DefaultFileStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DefaultFileStoreMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DefaultFileStoreMBean entity.

/management/weblogic/{version}/edit/servers/{name}/executeQueues

This resource manages a collection of weblogic.management.configuration.ExecuteQueueMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ExecuteQueueMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ExecuteQueueMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/executeQueues/{name}

This resource manages a weblogic.management.configuration.ExecuteQueueMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ExecuteQueueMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ExecuteQueueMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ExecuteQueueMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ExecuteQueueMBean entity.

/management/weblogic/{version}/edit/servers/{name}/federationServices

This resource manages a weblogic.management.configuration.FederationServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.FederationServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FederationServicesMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.FederationServicesMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.FederationServicesMBean entity.

/management/weblogic/{version}/edit/servers/{name}/IIOP

This resource manages a weblogic.management.configuration.IIOPMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.IIOPMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.IIOPMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.IIOPMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.IIOPMBean entity.

/management/weblogic/{version}/edit/servers/{name}/JTAMigratableTarget

This resource manages a weblogic.management.configuration.JTAMigratableTargetMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAMigratableTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAMigratableTargetMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JTAMigratableTargetMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/log

This resource manages a weblogic.management.configuration.LogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.LogMBean entity.

/management/weblogic/{version}/edit/servers/{name}/networkAccessPointCreateForm

This resource manages the create forms for the networkAccessPoints collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.NetworkAccessPointMBean entity populated with default values that can be customized then posted (using the POST method) to the networkAccessPoints collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.NetworkAccessPointMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/networkAccessPoints

This resource manages a collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.NetworkAccessPointMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.NetworkAccessPointMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.

/management/weblogic/{version}/edit/servers/{name}/networkAccessPoints/{name}

This resource manages a weblogic.management.configuration.NetworkAccessPointMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.NetworkAccessPointMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.

/management/weblogic/{version}/edit/servers/{name}/overloadProtection

This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OverloadProtectionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OverloadProtectionMBean entity.

/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTrigger

This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ServerFailureTriggerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ServerFailureTriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ServerFailureTriggerMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTriggerCreateForm

This resource manages the create forms for the serverFailureTrigger optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ServerFailureTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the serverFailureTrigger optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDebug

This resource manages a weblogic.management.configuration.ServerDebugMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerDebugMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerDebugMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ServerDebugMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerDebugMBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopeCreateForm

This resource manages the create forms for the debugScopes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.DebugScopeMBean entity populated with default values that can be customized then posted (using the POST method) to the debugScopes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DebugScopeMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopes

This resource manages a collection of weblogic.management.configuration.DebugScopeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.DebugScopeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.DebugScopeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.DebugScopeMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DebugScopeMBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopes/{name}

This resource manages a weblogic.management.configuration.DebugScopeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DebugScopeMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DebugScopeMBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig

This resource manages a weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement

The resource supports the following methods:

POST

Look up WLDFDataRetirement object with given name

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

name

Name of the data retirement

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.WLDFDataRetirementMBean reference return field.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm

This resource manages the create forms for the harvestedTypes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitorCreateForm

This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm

This resource manages the create forms for the actions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayPropertyCreateForm

This resource manages the create forms for the arrayProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin

GET

Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapPropertyCreateForm

This resource manages the create forms for the mapProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActionCreateForm

This resource manages the create forms for the heapDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotificationCreateForm

This resource manages the create forms for the imageNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotificationCreateForm

This resource manages the create forms for the JMSNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotificationCreateForm

This resource manages the create forms for the JMXNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm

This resource manages the create forms for the logActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotificationCreateForm

This resource manages the create forms for the RESTNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActionCreateForm

This resource manages the create forms for the scaleDownActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActionCreateForm

This resource manages the create forms for the scaleUpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm

This resource manages the create forms for the scriptActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotificationCreateForm

This resource manages the create forms for the SMTPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotificationCreateForm

This resource manages the create forms for the SNMPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActionCreateForm

This resource manages the create forms for the threadDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm

This resource manages the create forms for the watches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm

This resource manages the create forms for the WLDFDataRetirementByAges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFDataRetirementByAges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges

This resource manages a collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name}

This resource manages a weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/serverStart

This resource manages a weblogic.management.configuration.ServerStartMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerStartMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ServerStartMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerStartMBean entity.

/management/weblogic/{version}/edit/servers/{name}/singleSignOnServices

This resource manages a weblogic.management.configuration.SingleSignOnServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SingleSignOnServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SingleSignOnServicesMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/SSL

This resource manages a weblogic.management.configuration.SSLMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SSLMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SSLMBean entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.configuration.SSLMBean Instance

This example uses the GET method to view this weblogic.management.configuration.SSLMBean 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/edit/servers/AdminServer/SSL

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer/SSL"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer/SSL"
        }
    ],
    "identity": [
        "servers",
        "AdminServer",
        "SSL"
    ],
    "hostnameVerificationIgnored": false,
    "notes": null,
    "outboundPrivateKeyPassPhrase": null,
    "identityAndTrustLocations": "KeyStores",
    "serverPrivateKeyAlias": null,
    "hostnameVerifier": null,
    "clientCertAlias": null,
    "type": "SSL",
    "inboundCertificateValidation": "BuiltinSSLValidationOnly",
    "enabled": false,
    "serverPrivateKeyPassPhrase": null,
    "SSLRejectionLoggingEnabled": true,
    "clientCertPrivateKeyPassPhrase": null,
    "allowUnencryptedNullCipher": false,
    "id": 0,
    "dynamicallyCreated": false,
    "outboundPrivateKeyAlias": null,
    "SSLv2HelloEnabled": true,
    "exportKeyLifespan": 500,
    "acceptKSSDemoCertsEnabled": true,
    "twoWaySSLEnabled": false,
    "ciphersuites": [],
    "tags": [],
    "outboundCertificateValidation": "BuiltinSSLValidationOnly",
    "JSSEEnabled": true,
    "clientCertificateEnforced": false,
    "loginTimeoutMillis": 25000,
    "useServerCerts": false,
    "useClientCertForOutbound": false,
    "minimumTLSProtocolVersion": null,
    "name": "AdminServer",
    "listenPort": 7002
}

POST

Update this weblogic.management.configuration.SSLMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SSLMBean entity.

Example

Example 1   Update the weblogic.management.configuration.SSLMBean Instance

This example uses the POST method to update this weblogic.management.configuration.SSLMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{ loginTimeoutMillis: 23456 }" \
-X POST http://localhost:7001/management/weblogic/latest/edit/servers/AdminServer/SSL

Example Response

HTTP/1.1 200 OK

Response Body:
{}

/management/weblogic/{version}/edit/servers/{name}/transactionLogJDBCStore

This resource manages a weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/webServer

This resource manages a weblogic.management.configuration.WebServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WebServerMBean entity.

/management/weblogic/{version}/edit/servers/{name}/webServer/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerLogMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServerLogMBean entity.

/management/weblogic/{version}/edit/servers/{name}/webService

This resource manages a weblogic.management.configuration.WebServiceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServiceMBean entity.

/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering

This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence

This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServicePersistenceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServicePersistenceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm

This resource manages the create forms for the webServiceLogicalStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebServiceLogicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServiceLogicalStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores

This resource manages a collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.WebServiceLogicalStoreMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores/{name}

This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm

This resource manages the create forms for the webServicePhysicalStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebServicePhysicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServicePhysicalStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores

This resource manages a collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.WebServicePhysicalStoreMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores/{name}

This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/servers/{name}/webService/webServiceReliability

This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceReliabilityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceReliabilityMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplateCreateForm

This resource manages the create forms for the serverTemplates collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ServerTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the serverTemplates collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates

This resource manages a collection of weblogic.management.configuration.ServerTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ServerTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ServerTemplateMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ServerTemplateMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerTemplateMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}

This resource manages a weblogic.management.configuration.ServerTemplateMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ServerTemplateMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ServerTemplateMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerTemplateMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ServerTemplateMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerTemplateMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/coherenceMemberConfig

This resource manages a weblogic.management.configuration.CoherenceMemberConfigMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceMemberConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceMemberConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/configurationPropertyCreateForm

This resource manages the create forms for the configurationProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/dataSource

This resource manages a weblogic.management.configuration.DataSourceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DataSourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DataSourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.DataSourceMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/dataSource/dataSourceLogFile

This resource manages a weblogic.management.configuration.DataSourceLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.DataSourceLogFileMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DataSourceLogFileMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/defaultFileStore

This resource manages a weblogic.management.configuration.DefaultFileStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DefaultFileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DefaultFileStoreMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.DefaultFileStoreMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DefaultFileStoreMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/executeQueues

This resource manages a collection of weblogic.management.configuration.ExecuteQueueMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ExecuteQueueMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ExecuteQueueMBean entities.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/executeQueues/{name}

This resource manages a weblogic.management.configuration.ExecuteQueueMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ExecuteQueueMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ExecuteQueueMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ExecuteQueueMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ExecuteQueueMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/federationServices

This resource manages a weblogic.management.configuration.FederationServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.FederationServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FederationServicesMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.FederationServicesMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.FederationServicesMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/IIOP

This resource manages a weblogic.management.configuration.IIOPMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.IIOPMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.IIOPMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.IIOPMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.IIOPMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/JTAMigratableTarget

This resource manages a weblogic.management.configuration.JTAMigratableTargetMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAMigratableTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAMigratableTargetMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JTAMigratableTargetMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/log

This resource manages a weblogic.management.configuration.LogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.LogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.LogMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPointCreateForm

This resource manages the create forms for the networkAccessPoints collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.NetworkAccessPointMBean entity populated with default values that can be customized then posted (using the POST method) to the networkAccessPoints collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.NetworkAccessPointMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPoints

This resource manages a collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.NetworkAccessPointMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.NetworkAccessPointMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPoints/{name}

This resource manages a weblogic.management.configuration.NetworkAccessPointMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection

This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OverloadProtectionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.OverloadProtectionMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTrigger

This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ServerFailureTriggerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ServerFailureTriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.ServerFailureTriggerMBean instance if it exists; otherwise, create it.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTriggerCreateForm

This resource manages the create forms for the serverFailureTrigger optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ServerFailureTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the serverFailureTrigger optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug

This resource manages a weblogic.management.configuration.ServerDebugMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerDebugMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerDebugMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ServerDebugMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerDebugMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopeCreateForm

This resource manages the create forms for the debugScopes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.DebugScopeMBean entity populated with default values that can be customized then posted (using the POST method) to the debugScopes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DebugScopeMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopes

This resource manages a collection of weblogic.management.configuration.DebugScopeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.DebugScopeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.DebugScopeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.DebugScopeMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DebugScopeMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopes/{name}

This resource manages a weblogic.management.configuration.DebugScopeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.DebugScopeMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig

This resource manages a weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement

The resource supports the following methods:

POST

Look up WLDFDataRetirement object with given name

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

name

Name of the data retirement

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.WLDFDataRetirementMBean reference return field.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm

This resource manages the create forms for the harvestedTypes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitorCreateForm

This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm

This resource manages the create forms for the actions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayPropertyCreateForm

This resource manages the create forms for the arrayProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin

GET

Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapPropertyCreateForm

This resource manages the create forms for the mapProperties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActionCreateForm

This resource manages the create forms for the heapDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotificationCreateForm

This resource manages the create forms for the imageNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotificationCreateForm

This resource manages the create forms for the JMSNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotificationCreateForm

This resource manages the create forms for the JMXNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm

This resource manages the create forms for the logActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotificationCreateForm

This resource manages the create forms for the RESTNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActionCreateForm

This resource manages the create forms for the scaleDownActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActionCreateForm

This resource manages the create forms for the scaleUpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm

This resource manages the create forms for the scriptActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotificationCreateForm

This resource manages the create forms for the SMTPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotificationCreateForm

This resource manages the create forms for the SNMPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActionCreateForm

This resource manages the create forms for the threadDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm

This resource manages the create forms for the watches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm

This resource manages the create forms for the WLDFDataRetirementByAges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFDataRetirementByAges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges

This resource manages a collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name}

This resource manages a weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/serverStart

This resource manages a weblogic.management.configuration.ServerStartMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerStartMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ServerStartMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ServerStartMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/singleSignOnServices

This resource manages a weblogic.management.configuration.SingleSignOnServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SingleSignOnServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SingleSignOnServicesMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/SSL

This resource manages a weblogic.management.configuration.SSLMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SSLMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SSLMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SSLMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SSLMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/transactionLogJDBCStore

This resource manages a weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/webServer

This resource manages a weblogic.management.configuration.WebServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WebServerMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/webServer/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerLogMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServerLogMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/webService

This resource manages a weblogic.management.configuration.WebServiceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServiceMBean entity.

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering

This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence

This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServicePersistenceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServicePersistenceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm

This resource manages the create forms for the webServiceLogicalStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebServiceLogicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServiceLogicalStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores

This resource manages a collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.WebServiceLogicalStoreMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores/{name}

This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm

This resource manages the create forms for the webServicePhysicalStores collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebServicePhysicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServicePhysicalStores collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores

This resource manages a collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.WebServicePhysicalStoreMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores/{name}

This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceReliability

This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceReliabilityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/shutdownClassCreateForm

This resource manages the create forms for the shutdownClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ShutdownClassMBean entity populated with default values that can be customized then posted (using the POST method) to the shutdownClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ShutdownClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/shutdownClasses

This resource manages a collection of weblogic.management.configuration.ShutdownClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ShutdownClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ShutdownClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.ShutdownClassMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.ShutdownClassMBean entity.

/management/weblogic/{version}/edit/shutdownClasses/{name}

This resource manages a weblogic.management.configuration.ShutdownClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ShutdownClassMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.ShutdownClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ShutdownClassMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.ShutdownClassMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.ShutdownClassMBean entity.

/management/weblogic/{version}/edit/singletonServiceCreateForm

This resource manages the create forms for the singletonServices collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SingletonServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the singletonServices collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SingletonServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/singletonServices

This resource manages a collection of weblogic.management.configuration.SingletonServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SingletonServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SingletonServiceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SingletonServiceMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SingletonServiceMBean entity.

/management/weblogic/{version}/edit/singletonServices/{name}

This resource manages a weblogic.management.configuration.SingletonServiceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SingletonServiceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SingletonServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SingletonServiceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SingletonServiceMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SingletonServiceMBean entity.

/management/weblogic/{version}/edit/SNMPAgent

This resource manages a weblogic.management.configuration.SNMPAgentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPAgentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAgentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPAgentMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPAgentMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChangeCreateForm

This resource manages the create forms for the SNMPAttributeChanges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPAttributeChangeMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPAttributeChanges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChanges

This resource manages a collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPAttributeChangeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPAttributeChangeMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChanges/{name}

This resource manages a weblogic.management.configuration.SNMPAttributeChangeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPAttributeChangeMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPAttributeChangeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPAttributeChangeMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitorCreateForm

This resource manages the create forms for the SNMPCounterMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPCounterMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPCounterMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitors

This resource manages a collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPCounterMonitorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPCounterMonitorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPCounterMonitorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPCounterMonitorMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPCounterMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPCounterMonitorMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitorCreateForm

This resource manages the create forms for the SNMPGaugeMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPGaugeMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPGaugeMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitors

This resource manages a collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPGaugeMonitorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPGaugeMonitorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilterCreateForm

This resource manages the create forms for the SNMPLogFilters collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPLogFilterMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPLogFilters collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilters

This resource manages a collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPLogFilterMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPLogFilterMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilters/{name}

This resource manages a weblogic.management.configuration.SNMPLogFilterMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPProxies

This resource manages a collection of weblogic.management.configuration.SNMPProxyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPProxyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPProxyMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPProxyMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPProxyMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPProxies/{name}

This resource manages a weblogic.management.configuration.SNMPProxyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPProxyMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPProxyMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPProxyCreateForm

This resource manages the create forms for the SNMPProxies collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPProxyMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPProxies collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPProxyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitorCreateForm

This resource manages the create forms for the SNMPStringMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPStringMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPStringMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitors

This resource manages a collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPStringMonitorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPStringMonitorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPStringMonitorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPStringMonitorMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPStringMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPStringMonitorMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinationCreateForm

This resource manages the create forms for the SNMPTrapDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPTrapDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPTrapDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinations

This resource manages a collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPTrapDestinationMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPTrapDestinationMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinations/{name}

This resource manages a weblogic.management.configuration.SNMPTrapDestinationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPTrapDestinationMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPTrapDestinationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPTrapDestinationMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgentDeploymentCreateForm

This resource manages the create forms for the SNMPAgentDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPAgentDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPAgentDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAgentDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments

This resource manages a collection of weblogic.management.configuration.SNMPAgentDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPAgentDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPAgentDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPAgentDeploymentMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}

This resource manages a weblogic.management.configuration.SNMPAgentDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPAgentDeploymentMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPAgentDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAgentDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPAgentDeploymentMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChangeCreateForm

This resource manages the create forms for the SNMPAttributeChanges collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPAttributeChangeMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPAttributeChanges collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges

This resource manages a collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPAttributeChangeMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPAttributeChangeMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges/{name}

This resource manages a weblogic.management.configuration.SNMPAttributeChangeMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPAttributeChangeMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPAttributeChangeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SNMPAttributeChangeMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitorCreateForm

This resource manages the create forms for the SNMPCounterMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPCounterMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPCounterMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors

This resource manages a collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPCounterMonitorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPCounterMonitorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPCounterMonitorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPCounterMonitorMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPCounterMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SNMPCounterMonitorMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitorCreateForm

This resource manages the create forms for the SNMPGaugeMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPGaugeMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPGaugeMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors

This resource manages a collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPGaugeMonitorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPGaugeMonitorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilterCreateForm

This resource manages the create forms for the SNMPLogFilters collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPLogFilterMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPLogFilters collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters

This resource manages a collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPLogFilterMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPLogFilterMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters/{name}

This resource manages a weblogic.management.configuration.SNMPLogFilterMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxies

This resource manages a collection of weblogic.management.configuration.SNMPProxyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPProxyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPProxyMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPProxyMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPProxyMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxies/{name}

This resource manages a weblogic.management.configuration.SNMPProxyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPProxyMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPProxyMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxyCreateForm

This resource manages the create forms for the SNMPProxies collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPProxyMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPProxies collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPProxyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitorCreateForm

This resource manages the create forms for the SNMPStringMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPStringMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPStringMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors

This resource manages a collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPStringMonitorMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPStringMonitorMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPStringMonitorMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPStringMonitorMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPStringMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SNMPStringMonitorMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinationCreateForm

This resource manages the create forms for the SNMPTrapDestinations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SNMPTrapDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPTrapDestinations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations

This resource manages a collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPTrapDestinationMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SNMPTrapDestinationMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations/{name}

This resource manages a weblogic.management.configuration.SNMPTrapDestinationMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SNMPTrapDestinationMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SNMPTrapDestinationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

POST

Update this weblogic.management.configuration.SNMPTrapDestinationMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/startupClassCreateForm

This resource manages the create forms for the startupClasses collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.StartupClassMBean entity populated with default values that can be customized then posted (using the POST method) to the startupClasses collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.StartupClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/startupClasses

This resource manages a collection of weblogic.management.configuration.StartupClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.StartupClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.StartupClassMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.StartupClassMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.StartupClassMBean entity.

/management/weblogic/{version}/edit/startupClasses/{name}

This resource manages a weblogic.management.configuration.StartupClassMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.StartupClassMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.StartupClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.StartupClassMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.StartupClassMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.StartupClassMBean entity.

/management/weblogic/{version}/edit/systemComponentConfigurationCreateForm

This resource manages the create forms for the systemComponentConfigurations collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SystemComponentConfigurationMBean entity populated with default values that can be customized then posted (using the POST method) to the systemComponentConfigurations collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SystemComponentConfigurationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/systemComponentConfigurations

This resource manages a collection of weblogic.management.configuration.SystemComponentConfigurationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SystemComponentConfigurationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SystemComponentConfigurationMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SystemComponentConfigurationMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/systemComponentConfigurations/{name}

This resource manages a weblogic.management.configuration.SystemComponentConfigurationMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SystemComponentConfigurationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SystemComponentConfigurationMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/systemComponentCreateForm

This resource manages the create forms for the systemComponents collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SystemComponentMBean entity populated with default values that can be customized then posted (using the POST method) to the systemComponents collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SystemComponentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/systemComponents

This resource manages a collection of weblogic.management.configuration.SystemComponentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SystemComponentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SystemComponentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SystemComponentMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SystemComponentMBean entity.

/management/weblogic/{version}/edit/systemComponents/{name}

This resource manages a weblogic.management.configuration.SystemComponentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SystemComponentMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.SystemComponentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SystemComponentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SystemComponentMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.SystemComponentMBean entity.

/management/weblogic/{version}/edit/systemComponents/{name}/systemComponentStart

This resource manages a weblogic.management.configuration.SystemComponentStartMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SystemComponentStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SystemComponentStartMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/virtualHostCreateForm

This resource manages the create forms for the virtualHosts collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.VirtualHostMBean entity populated with default values that can be customized then posted (using the POST method) to the virtualHosts collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.VirtualHostMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/virtualHosts

This resource manages a collection of weblogic.management.configuration.VirtualHostMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.VirtualHostMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.VirtualHostMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.VirtualHostMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.VirtualHostMBean entity.

/management/weblogic/{version}/edit/virtualHosts/{name}

This resource manages a weblogic.management.configuration.VirtualHostMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.VirtualHostMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.VirtualHostMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.VirtualHostMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.VirtualHostMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.VirtualHostMBean entity.

/management/weblogic/{version}/edit/virtualHosts/{name}/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerLogMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServerLogMBean entity.

/management/weblogic/{version}/edit/virtualTargetCreateForm

This resource manages the create forms for the virtualTargets collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.VirtualTargetMBean entity populated with default values that can be customized then posted (using the POST method) to the virtualTargets collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.VirtualTargetMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/virtualTargets

This resource manages a collection of weblogic.management.configuration.VirtualTargetMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.VirtualTargetMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.VirtualTargetMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.VirtualTargetMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.VirtualTargetMBean entity.

/management/weblogic/{version}/edit/virtualTargets/{name}

This resource manages a weblogic.management.configuration.VirtualTargetMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.VirtualTargetMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.VirtualTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.VirtualTargetMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.VirtualTargetMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.VirtualTargetMBean entity.

/management/weblogic/{version}/edit/virtualTargets/{name}/webServer

This resource manages a weblogic.management.configuration.WebServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WebServerMBean entity.

/management/weblogic/{version}/edit/virtualTargets/{name}/webServer/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerLogMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebServerLogMBean entity.

/management/weblogic/{version}/edit/webAppContainer

This resource manages a weblogic.management.configuration.WebAppContainerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebAppContainerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebAppContainerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebAppContainerMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebAppContainerMBean entity.

/management/weblogic/{version}/edit/webAppContainer/gzipCompression

This resource manages a weblogic.management.configuration.GzipCompressionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.GzipCompressionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.GzipCompressionMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.GzipCompressionMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.GzipCompressionMBean entity.

/management/weblogic/{version}/edit/webserviceSecurities

This resource manages a collection of weblogic.management.configuration.WebserviceSecurityMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceSecurityMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WebserviceSecurityMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WebserviceSecurityMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebserviceSecurityMBean entity.

/management/weblogic/{version}/edit/webserviceSecurities/{name}

This resource manages a weblogic.management.configuration.WebserviceSecurityMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebserviceSecurityMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WebserviceSecurityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceSecurityMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebserviceSecurityMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebserviceSecurityMBean entity.

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviderCreateForm

This resource manages the create forms for the webserviceCredentialProviders collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebserviceCredentialProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceCredentialProviders collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders

This resource manages a collection of weblogic.management.configuration.WebserviceCredentialProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceCredentialProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WebserviceCredentialProviderMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WebserviceCredentialProviderMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}

This resource manages a weblogic.management.configuration.WebserviceCredentialProviderMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebserviceCredentialProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceCredentialProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationPropertyCreateForm

This resource manages the create forms for the configurationProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokenCreateForm

This resource manages the create forms for the webserviceSecurityTokens collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebserviceSecurityTokenMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceSecurityTokens collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens

This resource manages a collection of weblogic.management.configuration.WebserviceSecurityTokenMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceSecurityTokenMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WebserviceSecurityTokenMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WebserviceSecurityTokenMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}

This resource manages a weblogic.management.configuration.WebserviceSecurityTokenMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebserviceSecurityTokenMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WebserviceSecurityTokenMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceSecurityTokenMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationPropertyCreateForm

This resource manages the create forms for the configurationProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTimestamp

This resource manages a weblogic.management.configuration.WebserviceTimestampMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebserviceTimestampMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceTimestampMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebserviceTimestampMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlerCreateForm

This resource manages the create forms for the webserviceTokenHandlers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebserviceTokenHandlerMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceTokenHandlers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers

This resource manages a collection of weblogic.management.configuration.WebserviceTokenHandlerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceTokenHandlerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WebserviceTokenHandlerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WebserviceTokenHandlerMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}

This resource manages a weblogic.management.configuration.WebserviceTokenHandlerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WebserviceTokenHandlerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WebserviceTokenHandlerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceTokenHandlerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

POST

Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin

/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationPropertyCreateForm

This resource manages the create forms for the configurationProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/webserviceSecurityCreateForm

This resource manages the create forms for the webserviceSecurities collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WebserviceSecurityMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceSecurities collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceSecurityMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/webserviceTestpage

This resource manages a weblogic.management.configuration.WebserviceTestpageMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebserviceTestpageMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceTestpageMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WebserviceTestpageMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WebserviceTestpageMBean entity.

/management/weblogic/{version}/edit/WLDFSystemResourceCreateForm

This resource manages the create forms for the WLDFSystemResources collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WLDFSystemResources

This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}

This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeploymentCreateForm

This resource manages the create forms for the subDeployments collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.SubDeploymentMBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm

This resource manages the create forms for the harvestedTypes collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm

This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm

This resource manages the create forms for the actions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.

This method can return the following links:

POST

Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm

This resource manages the create forms for the arrayProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin

GET

Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm

This resource manages the create forms for the encryptedProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm

This resource manages the create forms for the mapProperties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin

POST

Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm

This resource manages the create forms for the properties collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm

This resource manages the create forms for the heapDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm

This resource manages the create forms for the imageNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm

This resource manages the create forms for the JMSNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm

This resource manages the create forms for the JMXNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm

This resource manages the create forms for the logActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm

This resource manages the create forms for the RESTNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm

This resource manages the create forms for the scaleDownActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm

This resource manages the create forms for the scaleUpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm

This resource manages the create forms for the scriptActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm

This resource manages the create forms for the SMTPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm

This resource manages the create forms for the SNMPNotifications collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm

This resource manages the create forms for the threadDumpActions collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

POST

Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm

This resource manages the create forms for the watches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

Roles

Admin, Deployer, Monitor, Operator

POST

Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.

/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

POST

Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.

/management/weblogic/{version}/edit/WSReliableDeliveryPolicies

This resource manages a collection of weblogic.management.configuration.WSReliableDeliveryPolicyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WSReliableDeliveryPolicyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WSReliableDeliveryPolicyMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/WSReliableDeliveryPolicies/{name}

This resource manages a weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WSReliableDeliveryPolicyCreateForm

This resource manages the create forms for the WSReliableDeliveryPolicies collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity populated with default values that can be customized then posted (using the POST method) to the WSReliableDeliveryPolicies collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServerCreateForm

This resource manages the create forms for the WTCServers collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCServerMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCServers collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers

This resource manages a collection of weblogic.management.configuration.WTCServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCServerMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WTCServerMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.WTCServerMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}

This resource manages a weblogic.management.configuration.WTCServerMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCServerMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.WTCServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCServerMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCServerMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCServerMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCExportCreateForm

This resource manages the create forms for the WTCExports collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCExportMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCExports collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCExportMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCExports

This resource manages a collection of weblogic.management.configuration.WTCExportMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCExportMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCExportMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WTCExportMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCExportMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCExports/{name}

This resource manages a weblogic.management.configuration.WTCExportMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCExportMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCExportMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCExportMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCExportMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCExportMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCImportCreateForm

This resource manages the create forms for the WTCImports collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCImportMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCImports collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCImportMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCImports

This resource manages a collection of weblogic.management.configuration.WTCImportMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCImportMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCImportMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WTCImportMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCImportMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCImports/{name}

This resource manages a weblogic.management.configuration.WTCImportMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCImportMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCImportMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCImportMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCImportMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCImportMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDomCreateForm

This resource manages the create forms for the WTCLocalTuxDoms collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCLocalTuxDomMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCLocalTuxDoms collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCLocalTuxDomMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDoms

This resource manages a collection of weblogic.management.configuration.WTCLocalTuxDomMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCLocalTuxDomMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCLocalTuxDomMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WTCLocalTuxDomMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCLocalTuxDomMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDoms/{name}

This resource manages a weblogic.management.configuration.WTCLocalTuxDomMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCLocalTuxDomMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCLocalTuxDomMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCLocalTuxDomMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCLocalTuxDomMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCLocalTuxDomMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswordCreateForm

This resource manages the create forms for the WTCPasswords collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCPasswordMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCPasswords collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCPasswordMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswords

This resource manages a collection of weblogic.management.configuration.WTCPasswordMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCPasswordMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCPasswordMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WTCPasswordMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCPasswordMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswords/{name}

This resource manages a weblogic.management.configuration.WTCPasswordMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCPasswordMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCPasswordMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCPasswordMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCPasswordMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCPasswordMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDomCreateForm

This resource manages the create forms for the WTCRemoteTuxDoms collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCRemoteTuxDomMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCRemoteTuxDoms collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDoms

This resource manages a collection of weblogic.management.configuration.WTCRemoteTuxDomMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCRemoteTuxDomMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCRemoteTuxDomMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WTCRemoteTuxDomMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDoms/{name}

This resource manages a weblogic.management.configuration.WTCRemoteTuxDomMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCRemoteTuxDomMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCRemoteTuxDomMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCRemoteTuxDomMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCResources

This resource manages a weblogic.management.configuration.WTCResourcesMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCResourcesMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCResourcesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCResourcesMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCResourcesMBean instance if it exists; otherwise, create it.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCResourcesMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCResourcesCreateForm

This resource manages the create forms for the WTCResources optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCResourcesMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCResources optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCResourcesMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobal

This resource manages a weblogic.management.configuration.WTCtBridgeGlobalMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCtBridgeGlobalMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCtBridgeGlobalMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCtBridgeGlobalMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCtBridgeGlobalMBean instance if it exists; otherwise, create it.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCtBridgeGlobalMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobalCreateForm

This resource manages the create forms for the WTCtBridgeGlobal optional singleton instance.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCtBridgeGlobalMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCtBridgeGlobal optional singleton resource to create a new instance if it currently does not exist.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCtBridgeGlobalMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirectCreateForm

This resource manages the create forms for the WTCtBridgeRedirects collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.WTCtBridgeRedirectMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCtBridgeRedirects collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirects

This resource manages a collection of weblogic.management.configuration.WTCtBridgeRedirectMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCtBridgeRedirectMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCtBridgeRedirectMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.WTCtBridgeRedirectMBean instance to this collection.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.

/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirects/{name}

This resource manages a weblogic.management.configuration.WTCtBridgeRedirectMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.WTCtBridgeRedirectMBean instance.

Roles

Admin, Deployer

GET

Get this weblogic.management.configuration.WTCtBridgeRedirectMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.WTCtBridgeRedirectMBean instance.

Roles

Admin, Deployer

Request Body

Must contain a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.

/management/weblogic/{version}/edit/XMLEntityCacheCreateForm

This resource manages the create forms for the XMLEntityCaches collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.XMLEntityCacheMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLEntityCaches collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLEntityCacheMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/XMLEntityCaches

This resource manages a collection of weblogic.management.configuration.XMLEntityCacheMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLEntityCacheMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.XMLEntityCacheMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.XMLEntityCacheMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.XMLEntityCacheMBean entity.

/management/weblogic/{version}/edit/XMLEntityCaches/{name}

This resource manages a weblogic.management.configuration.XMLEntityCacheMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.XMLEntityCacheMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.XMLEntityCacheMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLEntityCacheMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.XMLEntityCacheMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.XMLEntityCacheMBean entity.

/management/weblogic/{version}/edit/XMLRegistries

This resource manages a collection of weblogic.management.configuration.XMLRegistryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLRegistryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.XMLRegistryMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.XMLRegistryMBean instance to this collection.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.XMLRegistryMBean entity.

/management/weblogic/{version}/edit/XMLRegistries/{name}

This resource manages a weblogic.management.configuration.XMLRegistryMBean instance.

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.XMLRegistryMBean instance.

Roles

Admin

GET

Get this weblogic.management.configuration.XMLRegistryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLRegistryMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.XMLRegistryMBean instance.

Roles

Admin

Request Body

Must contain a weblogic.management.configuration.XMLRegistryMBean entity.

/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries

This resource manages a collection of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries/{name}

This resource manages a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntryCreateForm

This resource manages the create forms for the XMLEntitySpecRegistryEntries collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLEntitySpecRegistryEntries collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries

This resource manages a collection of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entities.

This method can return the following links:

POST

Add a new weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instance to this collection.

Roles

Admin

/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries/{name}

This resource manages a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntryCreateForm

This resource manages the create forms for the XMLParserSelectRegistryEntries collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLParserSelectRegistryEntries collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entity.

This method can return the following links:

/management/weblogic/{version}/edit/XMLRegistryCreateForm

This resource manages the create forms for the XMLRegistries collection resource.

The resource supports the following methods:

GET

This resource returns a weblogic.management.configuration.XMLRegistryMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLRegistries collection resource to create a new instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLRegistryMBean entity.

This method can return the following links: