1 Resources

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

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

/management/weblogic

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

The latest version is 12.2.1.3.0. The other versions, which are deprecated, are 12.2.1.0.0, 12.2.1.1.0, 12.2.1.2.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.3.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.3.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.3.0"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.0.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.0.0"
                }
            ],
            "version": "12.2.1.0.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.1.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.1.0"
                }
            ],
            "version": "12.2.1.1.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "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"
                }
            ],
            "version": "12.2.1.2.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0"
                }
            ],
            "version": "12.2.1.3.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.3.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.3.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.3.0"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0"
        },
        {
            "rel": "edit",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/edit"
        },
        {
            "rel": "domainConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainConfig"
        },
        {
            "rel": "domainRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainRuntime"
        },
        {
            "rel": "serverRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverRuntime"
        },
        {
            "rel": "serverConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverConfig"
        },
        {
            "rel": "currentUser",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/currentUser"
        }
    ],
    "version": "12.2.1.3.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:

POST

Update this weblogic.management.configuration.DomainMBean instance.

Request Body

Must contain a weblogic.management.configuration.DomainMBean 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/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}/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}/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

Response Body

Contains a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity.

This method can return the following links:

POST

Update this weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance.

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrideCreateForm

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides

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

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides/{name}

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

The resource supports the following methods:

DELETE

Delete this weblogic.management.configuration.JDBCPropertyOverrideMBean instance.

Roles

Admin, Deployer

POST

Update this weblogic.management.configuration.JDBCPropertyOverrideMBean 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

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}/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}/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}/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/templates/{name}/topicSubscriptionParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

POST

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

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean 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/topics/{name}/topicSubscriptionParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

POST

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

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean 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}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams

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

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Request Body

Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean 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}/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/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

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

POST

Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin

/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

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

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

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

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/search

The resource supports the following methods:

POST

Search the edit tree.

Roles

Admin, Deployer, Monitor, Operator

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/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

/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:

/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

/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

/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

/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:

/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

/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.