1 Resources

This documentation describes the Oracle WebLogic Server MT RESTful server configuration resources that are used to view the WLS configuration that the Administration Server is currently running against 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 different versions (if applicable) of the resources that are in this domain.

For the 12.2.1 release, there are just two versions: 12.2.1 and latest, where latest is another name for 12.2.1. For future releases, latest always refers to the most recent release.

To always use the latest resources, make sure to use latest in the URLs. Note that this might require updating a client when moving to a newer version of WebLogic Server. To fix the version so that an update is not required, use 12.2.1 in the URLs.

The resource supports the following methods:

GET

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

/management/weblogic/{version}

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

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0"
        },
        {
            "rel": "edit",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/edit"
        },
        {
            "rel": "domainConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainConfig"
        },
        {
            "rel": "domainRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainRuntime"
        },
        {
            "rel": "serverRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverRuntime"
        },
        {
            "rel": "serverConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverConfig"
        },
        {
            "rel": "currentUser",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/currentUser"
        }
    ],
    "version": "12.2.1.0",
    "isLatest": true,
    "lifecycle": "active"
}

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

This resource is used view the WebLogic Server configuration that the administration server is currently running against.

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/JDBCSystemResourceOverrides/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/mailSessionOverrides/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.MailSessionOverrideMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/managedExecutorServiceTemplates/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/managedScheduledExecutorServiceTemplates/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/managedThreadFactoryTemplates/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/partitionWorkManager

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.PartitionWorkManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceCacheConfigs

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name}/importCacheConfigurationFile

The resource supports the following methods:

POST

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Response Body

Contains an empty JSON object.

POST

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

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

file

the name of the file

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}/coherenceSocketAddresses

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddresses

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddresses/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParams/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceKeystoreParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceLoggingParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/importCustomClusterConfigurationFile

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

file

Absolute path to the custom Coherence cluster configuration file

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/subDeployments

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/subDeployments/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/fileStores/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCStores/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JMSServers/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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}/serverConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/mailSessions/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/managedExecutorServices/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/managedThreadFactories/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/messagingBridges/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/osgiFrameworks/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

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

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/cpuUtilization

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CpuUtilizationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/cpuUtilization/triggers/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/fileOpen

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.FileOpenMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/fileOpen/triggers/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.TriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/heapRetained

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.HeapRetainedMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/heapRetained/fairShareConstraint

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/resourceManager/heapRetained/triggers/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/capacities/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CapacityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/fairShareRequestClasses/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/maxThreadsConstraints/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/minThreadsConstraints/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/responseTimeRequestClasses/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/workManagers/{name}

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

The resource supports the following methods:

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:

/management/weblogic/{version}/serverConfig/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTrigger

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/partitions/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}

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

The resource supports the following methods:

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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/appDeployments/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/coherenceClusterSystemResources

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/coherenceClusterSystemResources/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/fileStores/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.FileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCStores/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSBridgeDestinations/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSServers/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/libraries/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/mailSessions/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.MailSessionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/managedExecutorServices/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/managedScheduledExecutorServices/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/managedThreadFactories/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/messagingBridges/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/osgiFrameworks/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OsgiFrameworkMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/SAFAgents/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SAFAgentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/search

The resource supports the following methods:

POST

Search the serverConfig tree.

Request Body

The search request body includes the search criteria.

Response Body

The search response includes the results of the search.

/management/weblogic/{version}/serverConfig/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:

/management/weblogic/{version}/serverConfig/virtualTargets/{name}

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

The resource supports the following methods:

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: