1 Resources

This documentation describes the Oracle WebLogic Server RESTful server configuration resources that are used to view the WLS configuration that the Administration Server or Managed Server is currently running against.

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

/management/weblogic

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

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

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.rest.bean.model.Version entities.

This method can return the following links:

  • uri=/management/weblogic rel=canonical

    This resource.

  • uri=/management/weblogic/12.2.1.2.0 rel=current

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

  • uri=/management/weblogic rel=self

    This resource.

Example

Example 1   View the versions collection.

This example uses the GET method to display the version instances in this collection.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "current",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/12.2.1.0.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/12.2.1.0.0"
                }
            ],
            "version": "12.2.1.0.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/12.2.1.1.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/12.2.1.1.0"
                }
            ],
            "version": "12.2.1.1.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/12.2.1.2.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/12.2.1.2.0"
                }
            ],
            "version": "12.2.1.2.0",
            "isLatest": true,
            "lifecycle": "active"
        }
    ]
}

/management/weblogic/{version}

This resource describes the resource trees that are used to manage a WebLogic Server domain and its managed servers. The resource trees mimic the bean trees in WLST and allow you to view and edit configuration and monitor runtime behavior.

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

  • uri=/management/weblogic/{version} rel=canonical

    This resource.

  • uri=/management/weblogic/{version}/currentUser rel=currentUser

  • uri=/management/weblogic/{version}/domainConfig rel=domainConfig

  • uri=/management/weblogic/{version}/domainRuntime rel=domainRuntime

  • uri=/management/weblogic/{version}/edit rel=edit

  • uri=/management/weblogic rel=parent

    The parent resource of this resource.

  • uri=/management/weblogic/{version} rel=self

    This resource.

  • uri=/management/weblogic/{version}/serverConfig rel=serverConfig

  • uri=/management/weblogic/{version}/serverRuntime rel=serverRuntime

Example

Example 1   View the latest version.

This example uses the GET method to display the latest version.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest"
        },
        {
            "rel": "edit",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit"
        },
        {
            "rel": "domainConfig",
            "href": "http:\//localhost:7001/management/weblogic/latest/domainConfig"
        },
        {
            "rel": "domainRuntime",
            "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime"
        },
        {
            "rel": "serverRuntime",
            "href": "http:\//localhost:7001/management/weblogic/latest/serverRuntime"
        },
        {
            "rel": "serverConfig",
            "href": "http:\//localhost:7001/management/weblogic/latest/serverConfig"
        },
        {
            "rel": "currentUser",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        }
    ],
    "version": "12.2.1.2.0",
    "isLatest": true,
    "lifecycle": "active"
}
Example 2   View a specific version.

This example uses the GET method to display a specific version.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/12.2.1.2.0

Example Response

HTTP/1.1 200 OK

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

/management/weblogic/{version}/currentUser

This resource represents an authenticated user in the domain.

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

Example

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

This example uses the GET method to view this weblogic.management.rest.bean.model.CurrentUser instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest/currentUser

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic/latest"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        }
    ],
    "partitionId": "0",
    "partitionName": "DOMAIN",
    "user": "admin"
}

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

Example

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

This example uses the GET method to view this weblogic.management.configuration.DomainMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest/serverConfig?fields=administrationProtocol,productionModeEnabled&links=self

Example Response

HTTP/1.1 200 OK

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

/management/weblogic/{version}/serverConfig/adminConsole

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AdminConsoleMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AdminConsoleMBean entity.

This method can return the following links:

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

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

The resource supports the following methods:

POST

Specifies whether at least one partition has been configured.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverConfig/batchConfig

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.BatchConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.BatchConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/cdiContainer

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CdiContainerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CdiContainerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/clusters

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ClusterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ClusterMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceTierMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceTierMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DatabaseLessLeasingBasisMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DatabaseLessLeasingBasisMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DynamicServersMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DynamicServersMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAClusterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAClusterMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OverloadProtectionMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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/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/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/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}/coherenceSocketAddresses/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/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/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/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/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/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/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceFederationParams

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

The resource supports the following methods:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceManagementClusterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceManagementClusterMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/coherenceServers

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceServerMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceServerStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/configurationProperties

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/customResources

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CustomResourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CustomResourceMBean entity.

This method can return the following links:

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

This resource manages a weblogic.descriptor.DescriptorBean instance.

The resource supports the following methods:

GET

Get this weblogic.descriptor.DescriptorBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.descriptor.DescriptorBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/debugPatches

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DebugPatchesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DebugPatchesMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/deploymentConfiguration

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DeploymentConfigurationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DeploymentConfigurationMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DeploymentValidationPluginMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/embeddedLDAP

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.EmbeddedLDAPMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.EmbeddedLDAPMBean entity.

This method can return the following links:

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

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/findConfigBeansWithTags

The resource supports the following methods:

POST

The resource supports the following methods:

POST

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

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

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

Type: string

tags

tags

Type: array of string

Response Body

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

POST

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

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

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

Type: string

matchAll

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

Type: boolean

tags

tags

Type: array of string

Response Body

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

/management/weblogic/{version}/serverConfig/findPartitionByID

The resource supports the following methods:

POST

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

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

id

the id of the partition to find

Type: string

Response Body

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ForeignJNDILinkMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/interceptors

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.InterceptorsMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.InterceptorsMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/interceptors/interceptors

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.InterceptorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.InterceptorMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/internalAppDeployments

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

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

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/internalLibraries

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

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

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/JDBCSystemResources/{name}/JDBCResource/internalProperties

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams

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

The resource supports the following methods:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSBridgeDestinationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSInteropModuleMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSInteropModuleMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/destinationKeys

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/queues

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/templates

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/findErrorDestination

The resource supports the following methods:

POST

Finds the name of the error destination to use when a destination comes from a specific group

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

subDeploymentName

The subDeployment for which to find the quota

Type: string

Response Body

Contains a JSON object with a weblogic.j2ee.descriptor.wl.DestinationBean reference return field.

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/topics

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{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/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

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

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/subDeployments

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSMessageLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSMessageLogFileMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/JMSSystemResources/{name}/JMSResource/connectionFactories

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/JMSSystemResources/{name}/JMSResource/destinationKeys

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/JMSSystemResources/{name}/JMSResource/foreignServers

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/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/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/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/JMSSystemResources/{name}/JMSResource/queues

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/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/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/quotas

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/quotas/{name}

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/JMSSystemResources/{name}/JMSResource/templates

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/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/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/topics

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/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/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMXMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMXMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/joltConnectionPools

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JoltConnectionPoolMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JoltConnectionPoolMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/JPA

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JPAMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JPAMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/JTA

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAMBean entity.

This method can return the following links:

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

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LifecycleManagerConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LifecycleManagerConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/lifecycleManagerConfig/configuredEndPoints

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/lifecycleManagerConfig/configuredEndPoints/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/listTags

The resource supports the following methods:

POST

List all tags of the specified config bean type. If the type param is empty string, then all tags used in the domain are returned.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

type

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

Type: string

Response Body

Contains a JSON object with a array of string return field.

/management/weblogic/{version}/serverConfig/log

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/logFilters

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LogFilterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogFilterMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/lookupSystemResource

The resource supports the following methods:

POST

Lookup a particular SystemResource in this domain.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

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

/management/weblogic/{version}/serverConfig/lookupTarget

The resource supports the following methods:

POST

Roles

Admin, Deployer, Operator

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

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

/management/weblogic/{version}/serverConfig/machines

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.MachineMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MachineMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/machines/{name}/nodeManager

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.NodeManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.NodeManagerMBean entity.

This method can return the following links:

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

Response Body

Contains a weblogic.management.configuration.MailSessionMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedExecutorServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedThreadFactoryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.MigratableTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.MigratableTargetMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/optionalFeatureDeployment

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OptionalFeatureDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OptionalFeatureDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/optionalFeatureDeployment/optionalFeatures

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/optionalFeatureDeployment/optionalFeatures/{name}

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OptionalFeatureMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

Response Body

Contains a weblogic.management.configuration.OsgiFrameworkMBean 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}/adminVirtualTarget

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AdminVirtualTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.AdminVirtualTargetMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/partitions/{name}/adminVirtualTarget/webServer/webServerLog

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.AppDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LibraryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

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

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

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

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

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

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

The resource supports the following methods:

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

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

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

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

The resource supports the following methods:

/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

Response Body

Contains a weblogic.management.configuration.HeapRetainedMBean entity.

This method can return the following links:

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

This resource manages a weblogic.management.configuration.RestartLoopProtectionMBean 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}/userFileSystem

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.PartitionUserFileSystemMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.PartitionUserFileSystemMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ReplicatedStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ReplicatedStoreMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

Response Body

Contains a weblogic.management.configuration.AppDeploymentMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

Response Body

Contains a weblogic.management.configuration.FileStoreMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/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/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/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/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/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/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile

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

The resource supports the following methods:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

Response Body

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

This method can return the following links:

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

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

The resource supports the following methods:

GET

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

Roles

Admin, Deployer, Monitor, Operator

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

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

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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/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/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/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}/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/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/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}/foreignJNDIProviders/{name}/foreignJNDILinks

This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name}

This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean 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

Response Body

Contains a weblogic.management.configuration.JDBCStoreMBean entity.

This method can return the following links:

/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:

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/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource

This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties

This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name}

This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/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

Response Body

Contains a weblogic.management.configuration.JMSServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile

This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.

The resource supports the following methods:

/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:

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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource

This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.JMSBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations

This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name}

This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties

This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key}

This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues

This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas

This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics

This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}

This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination

The resource supports the following methods:

POST

Finds the name of the error destination to use when a destination comes from a specific group

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

subDeploymentName

The subDeployment for which to find the quota

Type: string

Response Body

Contains a JSON object with a weblogic.j2ee.descriptor.wl.DestinationBean reference return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams

This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName}

This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics

This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams

This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams

This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName

The resource supports the following methods:

POST

This is used to find the sub-deployment-name for this destination.

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast

This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds

This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

The resource supports the following methods:

GET

Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/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

Response Body

Contains a weblogic.management.configuration.LibraryMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/libraries/{name}/createPlan

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Create a deployment plan in the specified directory.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

planPath

planPath

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Create a deployment plan in a default directory

Roles

Admin, Deployer

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/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:

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/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

Response Body

Contains a weblogic.management.configuration.SAFAgentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile

This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

The resource supports the following methods:

/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:

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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}

This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SubDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SubDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.

The resource supports the following methods:

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/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceGroupTemplates/{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/resourceManagement

This resource manages a weblogic.management.configuration.ResourceManagementMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ResourceManagementMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ResourceManagementMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers

This resource manages a collection of weblogic.management.configuration.ResourceManagerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResourceManagerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResourceManagerMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}

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/resourceManagement/resourceManagers/{name}/cpuUtilization

This resource manages a weblogic.management.configuration.CpuUtilizationMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraint

This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/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/resourceManagement/resourceManagers/{name}/fileOpen/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/fileOpen/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/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/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraint

This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers

This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.TriggerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers/{name}

This resource manages a weblogic.management.configuration.TriggerMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/resourceManagement/resourceManagers/{name}/restartLoopProtection

This resource manages a weblogic.management.configuration.RestartLoopProtectionMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/restfulManagementServices

This resource manages a weblogic.management.configuration.RestfulManagementServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.RestfulManagementServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.RestfulManagementServicesMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/SAFAgents/{name}/JMSSAFMessageLogFile

This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.

This method can return the following links:

/management/weblogic/{version}/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/securityConfiguration

This resource manages a weblogic.management.configuration.SecurityConfigurationMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SecurityConfigurationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SecurityConfigurationMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/certRevoc

This resource manages a weblogic.management.configuration.CertRevocMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CertRevocMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CertRevocMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/certRevoc/certRevocCas

This resource manages a collection of weblogic.management.configuration.CertRevocCaMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.CertRevocCaMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.CertRevocCaMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/certRevoc/certRevocCas/{name}

This resource manages a weblogic.management.configuration.CertRevocCaMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CertRevocCaMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/JASPIC

This resource manages a weblogic.management.configuration.JASPICMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JASPICMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JASPICMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/JASPIC/authConfigProviders

This resource manages a collection of weblogic.management.configuration.AuthConfigProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.AuthConfigProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/JASPIC/authConfigProviders/{name}

This resource manages a weblogic.management.configuration.AuthConfigProviderMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms

This resource manages a collection of weblogic.management.security.RealmMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.RealmMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.RealmMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}

This resource manages a weblogic.management.security.RealmMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.RealmMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.RealmMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/adjudicator

This resource manages a weblogic.management.security.authorization.AdjudicatorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authorization.AdjudicatorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.AdjudicatorMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/auditors

This resource manages a collection of weblogic.management.security.audit.AuditorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.audit.AuditorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.security.audit.AuditorMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/auditors/{name}

This resource manages a weblogic.management.security.audit.AuditorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.audit.AuditorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.audit.AuditorMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/authenticationProviders

This resource manages a collection of weblogic.management.security.authentication.AuthenticationProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authentication.AuthenticationProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/authenticationProviders/{name}

This resource manages a weblogic.management.security.authentication.AuthenticationProviderMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authentication.AuthenticationProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authentication.AuthenticationProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/authorizers

This resource manages a collection of weblogic.management.security.authorization.AuthorizerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authorization.AuthorizerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/authorizers/{name}

This resource manages a weblogic.management.security.authorization.AuthorizerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authorization.AuthorizerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.AuthorizerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/certPathProviders

This resource manages a collection of weblogic.management.security.pk.CertPathProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.pk.CertPathProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/certPathProviders/{name}

This resource manages a weblogic.management.security.pk.CertPathProviderMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.pk.CertPathProviderMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.pk.CertPathProviderMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/credentialMappers

This resource manages a collection of weblogic.management.security.credentials.CredentialMapperMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.credentials.CredentialMapperMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/credentialMappers/{name}

This resource manages a weblogic.management.security.credentials.CredentialMapperMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.credentials.CredentialMapperMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.credentials.CredentialMapperMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/passwordValidators

This resource manages a collection of weblogic.management.security.authentication.PasswordValidatorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authentication.PasswordValidatorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/passwordValidators/{name}

This resource manages a weblogic.management.security.authentication.PasswordValidatorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authentication.PasswordValidatorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authentication.PasswordValidatorMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/RDBMSSecurityStore

This resource manages a weblogic.management.security.RDBMSSecurityStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.RDBMSSecurityStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.RDBMSSecurityStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/roleMappers

This resource manages a collection of weblogic.management.security.authorization.RoleMapperMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.security.authorization.RoleMapperMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/roleMappers/{name}

This resource manages a weblogic.management.security.authorization.RoleMapperMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authorization.RoleMapperMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authorization.RoleMapperMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/realms/{name}/userLockoutManager

This resource manages a weblogic.management.security.authentication.UserLockoutManagerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.security.authentication.UserLockoutManagerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.security.authentication.UserLockoutManagerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/securityConfiguration/secureMode

This resource manages a weblogic.management.configuration.SecureModeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SecureModeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SecureModeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/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/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

Response Body

Contains a weblogic.management.configuration.CapacityMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/selfTuning/contextRequestClasses

This resource manages a collection of weblogic.management.configuration.ContextRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ContextRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ContextRequestClassMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/selfTuning/contextRequestClasses/{name}

This resource manages a weblogic.management.configuration.ContextRequestClassMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ContextRequestClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ContextRequestClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/selfTuning/contextRequestClasses/{name}/contextCases/{name}

This resource manages a weblogic.management.configuration.ContextCaseMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ContextCaseMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/selfTuning/fairShareRequestClasses

This resource manages a collection of weblogic.management.configuration.FairShareRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.FairShareRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.FairShareRequestClassMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/selfTuning/fairShareRequestClasses/{name}

This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.FairShareRequestClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/selfTuning/maxThreadsConstraints

This resource manages a collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MaxThreadsConstraintMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/selfTuning/maxThreadsConstraints/{name}

This resource manages a weblogic.management.configuration.MaxThreadsConstraintMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.MaxThreadsConstraintMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/selfTuning/minThreadsConstraints

This resource manages a collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.MinThreadsConstraintMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/selfTuning/minThreadsConstraints/{name}

This resource manages a weblogic.management.configuration.MinThreadsConstraintMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.MinThreadsConstraintMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/selfTuning/responseTimeRequestClasses

This resource manages a collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ResponseTimeRequestClassMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/selfTuning/responseTimeRequestClasses/{name}

This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/selfTuning/workManagers/{name}/workManagerShutdownTrigger

This resource manages a weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers

This resource manages a collection of weblogic.management.configuration.ServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ServerMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}

This resource manages a weblogic.management.configuration.ServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/coherenceMemberConfig

This resource manages a weblogic.management.configuration.CoherenceMemberConfigMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceMemberConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.CoherenceMemberConfigMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/servers/{name}/dataSource

This resource manages a weblogic.management.configuration.DataSourceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DataSourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/dataSource/dataSourceLogFile

This resource manages a weblogic.management.configuration.DataSourceLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/servers/{name}/defaultFileStore

This resource manages a weblogic.management.configuration.DefaultFileStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DefaultFileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DefaultFileStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/executeQueues

This resource manages a collection of weblogic.management.configuration.ExecuteQueueMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ExecuteQueueMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ExecuteQueueMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/executeQueues/{name}

This resource manages a weblogic.management.configuration.ExecuteQueueMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ExecuteQueueMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ExecuteQueueMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/federationServices

This resource manages a weblogic.management.configuration.FederationServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.FederationServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FederationServicesMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/IIOP

This resource manages a weblogic.management.configuration.IIOPMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.IIOPMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.IIOPMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/JTAMigratableTarget

This resource manages a weblogic.management.configuration.JTAMigratableTargetMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAMigratableTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAMigratableTargetMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/log

This resource manages a weblogic.management.configuration.LogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/networkAccessPoints

This resource manages a collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.NetworkAccessPointMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/networkAccessPoints/{name}

This resource manages a weblogic.management.configuration.NetworkAccessPointMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/servers/{name}/overloadProtection

This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OverloadProtectionMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/overloadProtection/serverFailureTrigger

This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerFailureTriggerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/servers/{name}/serverDebug

This resource manages a weblogic.management.configuration.ServerDebugMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerDebugMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerDebugMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDebug/debugScopes

This resource manages a collection of weblogic.management.configuration.DebugScopeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.DebugScopeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.DebugScopeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDebug/debugScopes/{name}

This resource manages a weblogic.management.configuration.DebugScopeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig

This resource manages a weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement

The resource supports the following methods:

POST

Look up WLDFDataRetirement object with given name

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

name

Name of the data retirement

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.WLDFDataRetirementMBean reference return field.

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/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/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/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/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges

This resource manages a collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name}

This resource manages a weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/serverStart

This resource manages a weblogic.management.configuration.ServerStartMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerStartMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/singleSignOnServices

This resource manages a weblogic.management.configuration.SingleSignOnServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SingleSignOnServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SingleSignOnServicesMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/SSL

This resource manages a weblogic.management.configuration.SSLMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SSLMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SSLMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/transactionLogJDBCStore

This resource manages a weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/webServer

This resource manages a weblogic.management.configuration.WebServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/webServer/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerLogMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/webService

This resource manages a weblogic.management.configuration.WebServiceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/webService/webServiceBuffering

This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/webService/webServicePersistence

This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServicePersistenceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServicePersistenceMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/servers/{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/servers/{name}/webService/webServicePersistence/webServiceLogicalStores/{name}

This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{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/servers/{name}/webService/webServicePersistence/webServicePhysicalStores/{name}

This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/servers/{name}/webService/webServiceReliability

This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceReliabilityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates

This resource manages a collection of weblogic.management.configuration.ServerTemplateMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ServerTemplateMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ServerTemplateMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}

This resource manages a weblogic.management.configuration.ServerTemplateMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerTemplateMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerTemplateMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/coherenceMemberConfig

This resource manages a weblogic.management.configuration.CoherenceMemberConfigMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.CoherenceMemberConfigMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/dataSource

This resource manages a weblogic.management.configuration.DataSourceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DataSourceMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/dataSource/dataSourceLogFile

This resource manages a weblogic.management.configuration.DataSourceLogFileMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DataSourceLogFileMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/defaultFileStore

This resource manages a weblogic.management.configuration.DefaultFileStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DefaultFileStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.DefaultFileStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/executeQueues

This resource manages a collection of weblogic.management.configuration.ExecuteQueueMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ExecuteQueueMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ExecuteQueueMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/executeQueues/{name}

This resource manages a weblogic.management.configuration.ExecuteQueueMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ExecuteQueueMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/federationServices

This resource manages a weblogic.management.configuration.FederationServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.FederationServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.FederationServicesMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/IIOP

This resource manages a weblogic.management.configuration.IIOPMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.IIOPMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.IIOPMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/JTAMigratableTarget

This resource manages a weblogic.management.configuration.JTAMigratableTargetMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.JTAMigratableTargetMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.JTAMigratableTargetMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/log

This resource manages a weblogic.management.configuration.LogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.LogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.LogMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/networkAccessPoints

This resource manages a collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.NetworkAccessPointMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.NetworkAccessPointMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/networkAccessPoints/{name}

This resource manages a weblogic.management.configuration.NetworkAccessPointMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.NetworkAccessPointMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/overloadProtection

This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.OverloadProtectionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.OverloadProtectionMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/overloadProtection/serverFailureTrigger

This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDebug

This resource manages a weblogic.management.configuration.ServerDebugMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerDebugMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerDebugMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDebug/debugScopes

This resource manages a collection of weblogic.management.configuration.DebugScopeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.DebugScopeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.DebugScopeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDebug/debugScopes/{name}

This resource manages a weblogic.management.configuration.DebugScopeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.DebugScopeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig

This resource manages a weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement

The resource supports the following methods:

POST

Look up WLDFDataRetirement object with given name

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

name

Name of the data retirement

Type: string

Response Body

Contains a JSON object with a weblogic.management.configuration.WLDFDataRetirementMBean reference return field.

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/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/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/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/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions

The resource supports the following methods:

POST

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

typeName

typeName

Type: string

Response Body

Contains a JSON object with a array of weblogic.diagnostics.descriptor.WLDFActionBean references return field.

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification

The resource supports the following methods:

POST

Looks up an action with the given name.

Roles

Admin, Deployer

Request Body

Must contain a JSON object with the following fields:

name

name

Type: string

Response Body

Contains a JSON object with a weblogic.diagnostics.descriptor.WLDFNotificationBean reference return field.

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}/schedule

This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges

This resource manages a collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name}

This resource manages a weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/serverStart

This resource manages a weblogic.management.configuration.ServerStartMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ServerStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ServerStartMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/singleSignOnServices

This resource manages a weblogic.management.configuration.SingleSignOnServicesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SingleSignOnServicesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/SSL

This resource manages a weblogic.management.configuration.SSLMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SSLMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SSLMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/transactionLogJDBCStore

This resource manages a weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webServer

This resource manages a weblogic.management.configuration.WebServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webServer/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webService

This resource manages a weblogic.management.configuration.WebServiceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webService/webServiceBuffering

This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServiceBufferingMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue

This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webService/webServicePersistence

This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServicePersistenceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/serverTemplates/{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/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores/{name}

This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{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/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores/{name}

This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/serverTemplates/{name}/webService/webServiceReliability

This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/shutdownClasses

This resource manages a collection of weblogic.management.configuration.ShutdownClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.ShutdownClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.ShutdownClassMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/shutdownClasses/{name}

This resource manages a weblogic.management.configuration.ShutdownClassMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.ShutdownClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.ShutdownClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/singletonServices

This resource manages a collection of weblogic.management.configuration.SingletonServiceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SingletonServiceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SingletonServiceMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/singletonServices/{name}

This resource manages a weblogic.management.configuration.SingletonServiceMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SingletonServiceMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SingletonServiceMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent

This resource manages a weblogic.management.configuration.SNMPAgentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPAgentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAgentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPAttributeChanges

This resource manages a collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPAttributeChangeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPAttributeChanges/{name}

This resource manages a weblogic.management.configuration.SNMPAttributeChangeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPAttributeChangeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPCounterMonitors

This resource manages a collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPCounterMonitorMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPCounterMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPCounterMonitorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPCounterMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPGaugeMonitors

This resource manages a collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPGaugeMonitorMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPGaugeMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPLogFilters

This resource manages a collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPLogFilterMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPLogFilters/{name}

This resource manages a weblogic.management.configuration.SNMPLogFilterMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPProxies

This resource manages a collection of weblogic.management.configuration.SNMPProxyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPProxyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPProxyMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPProxies/{name}

This resource manages a weblogic.management.configuration.SNMPProxyMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPProxyMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPStringMonitors

This resource manages a collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPStringMonitorMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPStringMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPStringMonitorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPStringMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPTrapDestinations

This resource manages a collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPTrapDestinationMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgent/SNMPTrapDestinations/{name}

This resource manages a weblogic.management.configuration.SNMPTrapDestinationMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPTrapDestinationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments

This resource manages a collection of weblogic.management.configuration.SNMPAgentDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPAgentDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPAgentDeploymentMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}

This resource manages a weblogic.management.configuration.SNMPAgentDeploymentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPAgentDeploymentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SNMPAgentDeploymentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges

This resource manages a collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges/{name}

This resource manages a weblogic.management.configuration.SNMPAttributeChangeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors

This resource manages a collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPCounterMonitorMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors

This resource manages a collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPGaugeMonitorMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPLogFilters

This resource manages a collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPLogFilterMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPLogFilterMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPLogFilters/{name}

This resource manages a weblogic.management.configuration.SNMPLogFilterMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPLogFilterMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPProxies

This resource manages a collection of weblogic.management.configuration.SNMPProxyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPProxyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPProxyMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPProxies/{name}

This resource manages a weblogic.management.configuration.SNMPProxyMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SNMPProxyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors

This resource manages a collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SNMPStringMonitorMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors/{name}

This resource manages a weblogic.management.configuration.SNMPStringMonitorMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations

This resource manages a collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations/{name}

This resource manages a weblogic.management.configuration.SNMPTrapDestinationMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/startupClasses

This resource manages a collection of weblogic.management.configuration.StartupClassMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.StartupClassMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.StartupClassMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/startupClasses/{name}

This resource manages a weblogic.management.configuration.StartupClassMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.StartupClassMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.StartupClassMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/systemComponentConfigurations

This resource manages a collection of weblogic.management.configuration.SystemComponentConfigurationMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SystemComponentConfigurationMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SystemComponentConfigurationMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/systemComponentConfigurations/{name}

This resource manages a weblogic.management.configuration.SystemComponentConfigurationMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SystemComponentConfigurationMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/systemComponents

This resource manages a collection of weblogic.management.configuration.SystemComponentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SystemComponentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SystemComponentMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/systemComponents/{name}

This resource manages a weblogic.management.configuration.SystemComponentMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SystemComponentMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.SystemComponentMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/systemComponents/{name}/systemComponentStart

This resource manages a weblogic.management.configuration.SystemComponentStartMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.SystemComponentStartMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/virtualHosts

This resource manages a collection of weblogic.management.configuration.VirtualHostMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.VirtualHostMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.VirtualHostMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/virtualHosts/{name}

This resource manages a weblogic.management.configuration.VirtualHostMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.VirtualHostMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.VirtualHostMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/virtualHosts/{name}/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerLogMBean entity.

This method can return the following links:

/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:

/management/weblogic/{version}/serverConfig/virtualTargets/{name}/webServer

This resource manages a weblogic.management.configuration.WebServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/virtualTargets/{name}/webServer/webServerLog

This resource manages a weblogic.management.configuration.WebServerLogMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebServerLogMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/webAppContainer

This resource manages a weblogic.management.configuration.WebAppContainerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebAppContainerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebAppContainerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/webAppContainer/gzipCompression

This resource manages a weblogic.management.configuration.GzipCompressionMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.GzipCompressionMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.GzipCompressionMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/webserviceSecurities

This resource manages a collection of weblogic.management.configuration.WebserviceSecurityMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceSecurityMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WebserviceSecurityMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}

This resource manages a weblogic.management.configuration.WebserviceSecurityMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebserviceSecurityMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceSecurityMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceCredentialProviders

This resource manages a collection of weblogic.management.configuration.WebserviceCredentialProviderMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceCredentialProviderMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name}

This resource manages a weblogic.management.configuration.WebserviceCredentialProviderMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceSecurityTokens

This resource manages a collection of weblogic.management.configuration.WebserviceSecurityTokenMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceSecurityTokenMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name}

This resource manages a weblogic.management.configuration.WebserviceSecurityTokenMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceTimestamp

This resource manages a weblogic.management.configuration.WebserviceTimestampMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebserviceTimestampMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceTokenHandlers

This resource manages a collection of weblogic.management.configuration.WebserviceTokenHandlerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WebserviceTokenHandlerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name}

This resource manages a weblogic.management.configuration.WebserviceTokenHandlerMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties

This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties/{name}

This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/webserviceTestpage

This resource manages a weblogic.management.configuration.WebserviceTestpageMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WebserviceTestpageMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WebserviceTestpageMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WLDFSystemResources

This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/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/WLDFSystemResources/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WLDFSystemResources/{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

/management/weblogic/{version}/serverConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments

This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/WLDFSystemResources/{name}/WLDFResource

This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WLDFSystemResources/{name}/WLDFResource/harvester

This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/WLDFSystemResources/{name}/WLDFResource/instrumentation

This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/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/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

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/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/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name}

This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches

This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/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/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/WSReliableDeliveryPolicies

This resource manages a collection of weblogic.management.configuration.WSReliableDeliveryPolicyMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WSReliableDeliveryPolicyMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WSReliableDeliveryPolicyMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WSReliableDeliveryPolicies/{name}

This resource manages a weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers

This resource manages a collection of weblogic.management.configuration.WTCServerMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCServerMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCServerMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}

This resource manages a weblogic.management.configuration.WTCServerMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCServerMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCServerMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCExports

This resource manages a collection of weblogic.management.configuration.WTCExportMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCExportMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCExportMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCExports/{name}

This resource manages a weblogic.management.configuration.WTCExportMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCExportMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCExportMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCImports

This resource manages a collection of weblogic.management.configuration.WTCImportMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCImportMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCImportMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCImports/{name}

This resource manages a weblogic.management.configuration.WTCImportMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCImportMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCImportMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCLocalTuxDoms

This resource manages a collection of weblogic.management.configuration.WTCLocalTuxDomMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCLocalTuxDomMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCLocalTuxDomMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCLocalTuxDoms/{name}

This resource manages a weblogic.management.configuration.WTCLocalTuxDomMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCLocalTuxDomMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCPasswords

This resource manages a collection of weblogic.management.configuration.WTCPasswordMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCPasswordMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCPasswordMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCPasswords/{name}

This resource manages a weblogic.management.configuration.WTCPasswordMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCPasswordMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCPasswordMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCRemoteTuxDoms

This resource manages a collection of weblogic.management.configuration.WTCRemoteTuxDomMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCRemoteTuxDomMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCRemoteTuxDomMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCRemoteTuxDoms/{name}

This resource manages a weblogic.management.configuration.WTCRemoteTuxDomMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCRemoteTuxDomMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCResources

This resource manages a weblogic.management.configuration.WTCResourcesMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCResourcesMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCResourcesMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCtBridgeGlobal

This resource manages a weblogic.management.configuration.WTCtBridgeGlobalMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCtBridgeGlobalMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.WTCtBridgeGlobalMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCtBridgeRedirects

This resource manages a collection of weblogic.management.configuration.WTCtBridgeRedirectMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.WTCtBridgeRedirectMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.WTCtBridgeRedirectMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/WTCServers/{name}/WTCtBridgeRedirects/{name}

This resource manages a weblogic.management.configuration.WTCtBridgeRedirectMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.WTCtBridgeRedirectMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/XMLEntityCaches

This resource manages a collection of weblogic.management.configuration.XMLEntityCacheMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLEntityCacheMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.XMLEntityCacheMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/XMLEntityCaches/{name}

This resource manages a weblogic.management.configuration.XMLEntityCacheMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.XMLEntityCacheMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLEntityCacheMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/XMLRegistries

This resource manages a collection of weblogic.management.configuration.XMLRegistryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLRegistryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.configuration.XMLRegistryMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverConfig/XMLRegistries/{name}

This resource manages a weblogic.management.configuration.XMLRegistryMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.configuration.XMLRegistryMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.configuration.XMLRegistryMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries

This resource manages a collection of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries/{name}

This resource manages a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries

This resource manages a collection of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries/{name}

This resource manages a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instance.

The resource supports the following methods: