This documentation describes the Oracle WebLogic Server RESTful domain configuration resources that are used to view the last activated WLS configuration.
For a complete listing of the WLS REST reference documents and descriptions of their use, see Administering Oracle WebLogic Server with RESTful Management Services.
This resource is used to access different versions (if applicable) of the resources that are in this domain.
There are two versions: 12.2.1.0 (deprecated) and latest, where latest is another name for 12.2.1.1.0. For future releases, latest always refers to the most recent release.
All new MBean features have been added to the 12.2.1.1.0 and the 12.2.1.0 REST resources. Any MBean features that were deprecated in 12.2.1.1.0, will still be available using the 12.2.1.0 REST URLs, but not the 12.2.1.1.0 REST URLs.
To always use the latest resources, make sure to use latest
in the URLs.Note that this might require updating a client when moving to a newer version of WebLogic Server. To fix the version so that an update is not required, use 12.2.1.1.0
in the URLs.
The resource supports the following methods:
Get this collection of weblogic.management.rest.bean.model.Version instances.
Contains a list of weblogic.management.rest.bean.model.Version entities.
This method can return the following links:
uri=/management/weblogic rel=canonical
This resource.
uri=/management/weblogic/12.2.1.1.0 rel=current
Access the latest version of the WLS resources in the this domain.
uri=/management/weblogic rel=self
This resource.
This example uses the GET method to display the version instances in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "self", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "current", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0" } ], "items": [{ "links": [ { "rel": "self", "href": "http:\//localhost:7001/management/12.2.1.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/12.2.1.0" } ], "version": "12.2.1.0", "isLatest": true, "lifecycle": "active" }] }
This resource describes the resource trees that are used to manage a WebLogic Server domain and its managed servers. The resource trees mimic the bean trees in WLST and allow you to view and edit configuration and monitor runtime behavior.
The resource supports the following methods:
Get this weblogic.management.rest.bean.model.Version instance.
Contains a weblogic.management.rest.bean.model.Version entity.
This method can return the following links:
uri=/management/weblogic/{version} rel=canonical
This resource.
uri=/management/weblogic/{version}/currentUser rel=currentUser
uri=/management/weblogic/{version}/domainConfig rel=domainConfig
uri=/management/weblogic/{version}/domainRuntime rel=domainRuntime
uri=/management/weblogic/{version}/edit rel=edit
uri=/management/weblogic rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version} rel=self
This resource.
uri=/management/weblogic/{version}/serverConfig rel=serverConfig
uri=/management/weblogic/{version}/serverRuntime rel=serverRuntime
This example uses the GET method to display the latest version.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/latest" }, { "rel": "edit", "href": "http:\//localhost:7001/management/weblogic/latest/edit" }, { "rel": "domainConfig", "href": "http:\//localhost:7001/management/weblogic/latest/domainConfig" }, { "rel": "domainRuntime", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime" }, { "rel": "serverRuntime", "href": "http:\//localhost:7001/management/weblogic/latest/serverRuntime" }, { "rel": "serverConfig", "href": "http:\//localhost:7001/management/weblogic/latest/serverConfig" }, { "rel": "currentUser", "href": "http:\//localhost:7001/management/weblogic/latest/currentUser" } ], "version": "12.2.1.0", "isLatest": true, "lifecycle": "active" }
This example uses the GET method to display a specific version.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/12.2.1.0
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0" }, { "rel": "edit", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/edit" }, { "rel": "domainConfig", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainConfig" }, { "rel": "domainRuntime", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainRuntime" }, { "rel": "serverRuntime", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverRuntime" }, { "rel": "serverConfig", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverConfig" }, { "rel": "currentUser", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/currentUser" } ], "version": "12.2.1.0", "isLatest": true, "lifecycle": "active" }
This resource represents an authenticated user in the domain.
The resource supports the following methods:
Get this weblogic.management.rest.bean.model.CurrentUser instance.
Contains a weblogic.management.rest.bean.model.CurrentUser entity.
This method can return the following links:
uri=/management/weblogic/{version}/currentUser rel=canonical
This resource.
uri=/management/weblogic/{version} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/currentUser rel=self
This resource.
This example uses the GET method to view this weblogic.management.rest.bean.model.CurrentUser instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/currentUser
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic/latest" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/currentUser" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/latest/currentUser" } ], "partitionId": "0", "partitionName": "DOMAIN", "user": "admin" }
This resource is used to view the last activated WebLogic Server configuration.
The resource supports the following methods:
Get this weblogic.management.configuration.DomainMBean instance.
Contains a weblogic.management.configuration.DomainMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules rel=JMSInteropModules
This resource's JMSInteropModules collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/JMX rel=JMX
This resource's JMX singleton resource.
uri=/management/weblogic/{version}/domainConfig/JPA rel=JPA
This resource's JPA singleton resource.
uri=/management/weblogic/{version}/domainConfig/JTA rel=JTA
This resource's JTA singleton resource.
uri=/management/weblogic/{version}/domainConfig/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=SNMPAgent
This resource's SNMPAgent singleton resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments rel=SNMPAgentDeployments
This resource's SNMPAgentDeployments collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/WSReliableDeliveryPolicies rel=WSReliableDeliveryPolicies
This resource's WSReliableDeliveryPolicies collection resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers rel=WTCServers
This resource's WTCServers collection resource.
uri=/management/weblogic/{version}/domainConfig/XMLEntityCaches rel=XMLEntityCaches
This resource's XMLEntityCaches collection resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries rel=XMLRegistries
This resource's XMLRegistries collection resource.
uri=/management/weblogic/{version}/domainConfig/arePartitionsPresent rel=action title=arePartitionsPresent
This resource's arePartitionsPresent action resource.
uri=/management/weblogic/{version}/domainConfig/findConfigBeansWithTags rel=action title=findConfigBeansWithTags
This resource's findConfigBeansWithTags action resource.
uri=/management/weblogic/{version}/domainConfig/findPartitionByID rel=action title=findPartitionByID
This resource's findPartitionByID action resource.
uri=/management/weblogic/{version}/domainConfig/listTags rel=action title=listTags
This resource's listTags action resource.
uri=/management/weblogic/{version}/domainConfig/lookupSystemResource rel=action title=lookupSystemResource
This resource's lookupSystemResource action resource.
uri=/management/weblogic/{version}/domainConfig/lookupTarget rel=action title=lookupTarget
This resource's lookupTarget action resource.
uri=/management/weblogic/{version}/domainConfig/adminConsole rel=adminConsole
This resource's adminConsole singleton resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/domainConfig/batchConfig rel=batchConfig
This resource's batchConfig singleton resource.
uri=/management/weblogic/{version}/domainConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/cdiContainer rel=cdiContainer
This resource's cdiContainer singleton resource.
uri=/management/weblogic/{version}/domainConfig/clusters rel=clusters
This resource's clusters collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources rel=coherenceClusterSystemResources
This resource's coherenceClusterSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters rel=coherenceManagementClusters
This resource's coherenceManagementClusters collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceServers rel=coherenceServers
This resource's coherenceServers collection resource.
uri=/management/weblogic/{version}/domainConfig/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/customResources rel=customResources
This resource's customResources collection resource.
uri=/management/weblogic/{version}/domainConfig/debugPatches rel=debugPatches
This resource's debugPatches singleton resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration rel=deploymentConfiguration
This resource's deploymentConfiguration singleton resource.
uri=/management/weblogic/{version}/domainConfig/embeddedLDAP rel=embeddedLDAP
This resource's embeddedLDAP singleton resource.
uri=/management/weblogic/{version}/domainConfig/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/interceptors rel=interceptors
This resource's interceptors singleton resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments rel=internalAppDeployments
This resource's internalAppDeployments collection resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries rel=internalLibraries
This resource's internalLibraries collection resource.
uri=/management/weblogic/{version}/domainConfig/joltConnectionPools rel=joltConnectionPools
This resource's joltConnectionPools collection resource.
uri=/management/weblogic/{version}/domainConfig/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig rel=lifecycleManagerConfig
This resource's lifecycleManagerConfig singleton resource.
uri=/management/weblogic/{version}/domainConfig/log rel=log
This resource's log singleton resource.
uri=/management/weblogic/{version}/domainConfig/logFilters rel=logFilters
This resource's logFilters collection resource.
uri=/management/weblogic/{version}/domainConfig/machines rel=machines
This resource's machines collection resource.
uri=/management/weblogic/{version}/domainConfig/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServiceTemplates rel=managedExecutorServiceTemplates
This resource's managedExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServiceTemplates rel=managedScheduledExecutorServiceTemplates
This resource's managedScheduledExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactoryTemplates rel=managedThreadFactoryTemplates
This resource's managedThreadFactoryTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/domainConfig/migratableTargets rel=migratableTargets
This resource's migratableTargets collection resource.
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment rel=optionalFeatureDeployment
This resource's optionalFeatureDeployment singleton resource.
uri=/management/weblogic/{version}/domainConfig/osgiFrameworks rel=osgiFrameworks
This resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitionWorkManagers rel=partitionWorkManagers
This resource's partitionWorkManagers collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions rel=partitions
This resource's partitions collection resource.
uri=/management/weblogic/{version}/domainConfig/replicatedStores rel=replicatedStores
This resource's replicatedStores collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates rel=resourceGroupTemplates
This resource's resourceGroupTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups rel=resourceGroups
This resource's resourceGroups collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement rel=resourceManagement
This resource's resourceManagement singleton resource.
uri=/management/weblogic/{version}/domainConfig/restfulManagementServices rel=restfulManagementServices
This resource's restfulManagementServices singleton resource.
uri=/management/weblogic/{version}/domainConfig/search rel=search
This resource's search resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration rel=securityConfiguration
This resource's securityConfiguration singleton resource.
uri=/management/weblogic/{version}/domainConfig rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=selfTuning
This resource's selfTuning singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates rel=serverTemplates
This resource's serverTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/servers rel=servers
This resource's servers collection resource.
uri=/management/weblogic/{version}/domainConfig/shutdownClasses rel=shutdownClasses
This resource's shutdownClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/singletonServices rel=singletonServices
This resource's singletonServices collection resource.
uri=/management/weblogic/{version}/domainConfig/startupClasses rel=startupClasses
This resource's startupClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/systemComponentConfigurations rel=systemComponentConfigurations
This resource's systemComponentConfigurations collection resource.
uri=/management/weblogic/{version}/domainConfig/systemComponents rel=systemComponents
This resource's systemComponents collection resource.
uri=/management/weblogic/{version}/domainConfig/virtualHosts rel=virtualHosts
This resource's virtualHosts collection resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets rel=virtualTargets
This resource's virtualTargets collection resource.
uri=/management/weblogic/{version}/domainConfig/webAppContainer rel=webAppContainer
This resource's webAppContainer singleton resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities rel=webserviceSecurities
This resource's webserviceSecurities collection resource.
uri=/management/weblogic/{version}/domainConfig/webserviceTestpage rel=webserviceTestpage
This resource's webserviceTestpage singleton resource.
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/domainConfig?fields=administrationProtocol,productionModeEnabled&links=self
Example Response
HTTP/1.1 200 OK Response Body: { "links": [{ "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/domainConfig" }], "administrationProtocol": "t3s", "productionModeEnabled": false }
This resource manages a weblogic.management.configuration.AdminConsoleMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AdminConsoleMBean instance.
Contains a weblogic.management.configuration.AdminConsoleMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/adminConsole rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/adminConsole rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.
Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AppDeploymentMBean instance.
Contains a weblogic.management.configuration.AppDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
The resource supports the following methods:
This resource manages a weblogic.management.configuration.BatchConfigMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.BatchConfigMBean instance.
Contains a weblogic.management.configuration.BatchConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/batchConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/batchConfig rel=self
This resource.
This resource manages a weblogic.management.configuration.CdiContainerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CdiContainerMBean instance.
Contains a weblogic.management.configuration.CdiContainerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/cdiContainer rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/cdiContainer rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ClusterMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ClusterMBean instances.
Contains a list of weblogic.management.configuration.ClusterMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters rel=self
This resource.
This resource manages a weblogic.management.configuration.ClusterMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ClusterMBean instance.
Contains a weblogic.management.configuration.ClusterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/JTACluster rel=JTACluster
This resource's JTACluster singleton resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name} rel=canonical
This resource.
rel=coherenceClusterSystemResource
This resource's coherenceClusterSystemResource reference to a weblogic.management.configuration.CoherenceClusterSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/coherenceTier rel=coherenceTier
This resource's coherenceTier singleton resource.
rel=dataSourceForAutomaticMigration
This resource's dataSourceForAutomaticMigration reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
rel=dataSourceForJobScheduler
This resource's dataSourceForJobScheduler reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
rel=dataSourceForSessionPersistence
This resource's dataSourceForSessionPersistence reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/databaseLessLeasingBasis rel=databaseLessLeasingBasis
This resource's databaseLessLeasingBasis singleton resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/dynamicServers rel=dynamicServers
This resource's dynamicServers singleton resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/overloadProtection rel=overloadProtection
This resource's overloadProtection singleton resource.
uri=/management/weblogic/{version}/domainConfig/clusters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherenceTierMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceTierMBean instance.
Contains a weblogic.management.configuration.CoherenceTierMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/coherenceTier rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/coherenceTier rel=self
This resource.
This resource manages a weblogic.management.configuration.DatabaseLessLeasingBasisMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DatabaseLessLeasingBasisMBean instance.
Contains a weblogic.management.configuration.DatabaseLessLeasingBasisMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/databaseLessLeasingBasis rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/databaseLessLeasingBasis rel=self
This resource.
This resource manages a weblogic.management.configuration.DynamicServersMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DynamicServersMBean instance.
Contains a weblogic.management.configuration.DynamicServersMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/dynamicServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/dynamicServers rel=self
This resource.
rel=serverTemplate
This resource's serverTemplate reference to a weblogic.management.configuration.ServerTemplateMBean resource.
This resource manages a weblogic.management.configuration.JTAClusterMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JTAClusterMBean instance.
Contains a weblogic.management.configuration.JTAClusterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/JTACluster rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/JTACluster rel=self
This resource.
This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OverloadProtectionMBean instance.
Contains a weblogic.management.configuration.OverloadProtectionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/overloadProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/overloadProtection rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/overloadProtection/serverFailureTrigger rel=serverFailureTrigger
This resource's serverFailureTrigger singleton resource.
This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerFailureTriggerMBean instance.
Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/overloadProtection/serverFailureTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/clusters/{name}/overloadProtection/serverFailureTrigger rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.CoherenceClusterSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CoherenceClusterSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.CoherenceClusterSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance.
Contains a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/importCustomClusterConfigurationFile rel=action title=importCustomClusterConfigurationFile
This resource's importCustomClusterConfigurationFile action resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=coherenceCacheConfigs
This resource's coherenceCacheConfigs collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=coherenceClusterResource
This resource's coherenceClusterResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.CoherenceCacheConfigMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CoherenceCacheConfigMBean instances.
Contains a list of weblogic.management.configuration.CoherenceCacheConfigMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherenceCacheConfigMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceCacheConfigMBean instance.
Contains a weblogic.management.configuration.CoherenceCacheConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name}/importCacheConfigurationFile rel=action title=importCacheConfigurationFile
This resource's importCacheConfigurationFile action resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name} rel=self
This resource.
The resource supports the following methods:
This resource manages a weblogic.coherence.descriptor.wl.WeblogicCoherenceBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.WeblogicCoherenceBean instance.
Contains a weblogic.coherence.descriptor.wl.WeblogicCoherenceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders rel=coherenceAddressProviders
This resource's coherenceAddressProviders singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=coherenceClusterParams
This resource's coherenceClusterParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceFederationParams rel=coherenceFederationParams
This resource's coherenceFederationParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceLoggingParams rel=coherenceLoggingParams
This resource's coherenceLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherencePersistenceParams rel=coherencePersistenceParams
This resource's coherencePersistenceParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=self
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceAddressProvidersBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceAddressProvidersBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceAddressProvidersBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders rel=coherenceAddressProviders
This resource's coherenceAddressProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instances.
The resource supports the following methods:
Get this collection of weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instances.
Contains a list of weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean entity.
This method can return the following links:
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}/coherenceSocketAddresses rel=coherenceSocketAddresses
This resource's coherenceSocketAddresses collection resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instances.
The resource supports the following methods:
Get this collection of weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instances.
Contains a list of weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches rel=coherenceCaches
This resource's coherenceCaches collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses rel=coherenceClusterWellKnownAddresses
This resource's coherenceClusterWellKnownAddresses singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter rel=coherenceIdentityAsserter
This resource's coherenceIdentityAsserter singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceKeystoreParams rel=coherenceKeystoreParams
This resource's coherenceKeystoreParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices rel=coherenceServices
This resource's coherenceServices collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceCacheBean instances.
The resource supports the following methods:
Get this collection of weblogic.coherence.descriptor.wl.CoherenceCacheBean instances.
Contains a list of weblogic.coherence.descriptor.wl.CoherenceCacheBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceCacheBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceCacheBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressesBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressesBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressesBean entity.
This method can return the following links:
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddresses rel=coherenceClusterWellKnownAddresses
This resource's coherenceClusterWellKnownAddresses collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instances.
The resource supports the following methods:
Get this collection of weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instances.
Contains a list of weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceIdentityAsserterBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceIdentityAsserterBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceIdentityAsserterBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParams rel=coherenceInitParams
This resource's coherenceInitParams collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceInitParamBean instances.
The resource supports the following methods:
Get this collection of weblogic.coherence.descriptor.wl.CoherenceInitParamBean instances.
Contains a list of weblogic.coherence.descriptor.wl.CoherenceInitParamBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceInitParamBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceKeystoreParamsBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceKeystoreParamsBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceKeystoreParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceKeystoreParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.coherence.descriptor.wl.CoherenceServiceBean instances.
The resource supports the following methods:
Get this collection of weblogic.coherence.descriptor.wl.CoherenceServiceBean instances.
Contains a list of weblogic.coherence.descriptor.wl.CoherenceServiceBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceServiceBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceServiceBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceFederationParamsBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceFederationParamsBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceFederationParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceFederationParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherenceLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherenceLoggingParamsBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.coherence.descriptor.wl.CoherencePersistenceParamsBean instance.
The resource supports the following methods:
Get this weblogic.coherence.descriptor.wl.CoherencePersistenceParamsBean instance.
Contains a weblogic.coherence.descriptor.wl.CoherencePersistenceParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherencePersistenceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.CoherenceManagementClusterMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CoherenceManagementClusterMBean instances.
Contains a list of weblogic.management.configuration.CoherenceManagementClusterMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherenceManagementClusterMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceManagementClusterMBean instance.
Contains a weblogic.management.configuration.CoherenceManagementClusterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=coherenceManagementAddressProviders
This resource's coherenceManagementAddressProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.CoherenceManagementAddressProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CoherenceManagementAddressProviderMBean instances.
Contains a list of weblogic.management.configuration.CoherenceManagementAddressProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance.
Contains a weblogic.management.configuration.CoherenceManagementAddressProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name}/coherenceManagementAddressProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.CoherenceServerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CoherenceServerMBean instances.
Contains a list of weblogic.management.configuration.CoherenceServerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceServers rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherenceServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceServerMBean instance.
Contains a weblogic.management.configuration.CoherenceServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceServers/{name} rel=canonical
This resource.
rel=coherenceClusterSystemResource
This resource's coherenceClusterSystemResource reference to a weblogic.management.configuration.CoherenceClusterSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/coherenceServers/{name}/coherenceServerStart rel=coherenceServerStart
This resource's coherenceServerStart singleton resource.
rel=machine
This resource's machine reference to a weblogic.management.configuration.MachineMBean resource.
uri=/management/weblogic/{version}/domainConfig/coherenceServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceServers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherenceServerStartMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceServerStartMBean instance.
Contains a weblogic.management.configuration.CoherenceServerStartMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/coherenceServers/{name}/coherenceServerStart rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/coherenceServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/coherenceServers/{name}/coherenceServerStart rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/configurationProperties rel=self
This resource.
This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/configurationProperties/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.CustomResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CustomResourceMBean instances.
Contains a list of weblogic.management.configuration.CustomResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/customResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/customResources rel=self
This resource.
This resource manages a weblogic.management.configuration.CustomResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CustomResourceMBean instance.
Contains a weblogic.management.configuration.CustomResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/customResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/customResource rel=customResource
This resource's customResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/customResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.descriptor.DescriptorBean instance.
The resource supports the following methods:
Get this weblogic.descriptor.DescriptorBean instance.
Contains a weblogic.descriptor.DescriptorBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/customResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/customResource rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/customResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.management.configuration.DebugPatchesMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DebugPatchesMBean instance.
Contains a weblogic.management.configuration.DebugPatchesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/debugPatches rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/debugPatches rel=self
This resource.
This resource manages a weblogic.management.configuration.DeploymentConfigurationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DeploymentConfigurationMBean instance.
Contains a weblogic.management.configuration.DeploymentConfigurationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin rel=deploymentValidationPlugin
This resource's deploymentValidationPlugin singleton resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration rel=self
This resource.
This resource manages a weblogic.management.configuration.DeploymentValidationPluginMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DeploymentValidationPluginMBean instance.
Contains a weblogic.management.configuration.DeploymentValidationPluginMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin/parameters rel=parameters
This resource's parameters collection resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ParameterMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ParameterMBean instances.
Contains a list of weblogic.management.configuration.ParameterMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin/parameters rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin/parameters rel=self
This resource.
This resource manages a weblogic.management.configuration.ParameterMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ParameterMBean instance.
Contains a weblogic.management.configuration.ParameterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin/parameters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin/parameters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/deploymentConfiguration/deploymentValidationPlugin/parameters/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.EmbeddedLDAPMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.EmbeddedLDAPMBean instance.
Contains a weblogic.management.configuration.EmbeddedLDAPMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/embeddedLDAP rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/embeddedLDAP rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.FileStoreMBean instances.
Contains a list of weblogic.management.configuration.FileStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/fileStores rel=self
This resource.
This resource manages a weblogic.management.configuration.FileStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FileStoreMBean instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/fileStores/{name} rel=self
This resource.
The resource supports the following methods:
The resource supports the following methods:
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.
Must contain a JSON object with the following fields:
type of the MBean (shortened version of the class name less the MBean)
Type: string
tags
Type: array of string
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.
Must contain a JSON object with the following fields:
type of the MBean (shortened version of the class name less the MBean)
Type: string
false to match on any single tag, true to match on all tags
Type: boolean
tags
Type: array of string
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDIProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDILinkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name}/foreignJNDILinks rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.InterceptorsMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.InterceptorsMBean instance.
Contains a weblogic.management.configuration.InterceptorsMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/interceptors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/interceptors/interceptors rel=interceptors
This resource's interceptors collection resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/interceptors rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.InterceptorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.InterceptorMBean instances.
Contains a list of weblogic.management.configuration.InterceptorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/interceptors/interceptors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/interceptors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/interceptors/interceptors rel=self
This resource.
This resource manages a weblogic.management.configuration.InterceptorMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.InterceptorMBean instance.
Contains a weblogic.management.configuration.InterceptorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/interceptors/interceptors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/interceptors/interceptors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/interceptors/interceptors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.
Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AppDeploymentMBean instance.
Contains a weblogic.management.configuration.AppDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LibraryMBean instances.
Contains a list of weblogic.management.configuration.LibraryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalLibraries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries rel=self
This resource.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LibraryMBean instance.
Contains a weblogic.management.configuration.LibraryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.
Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCStores rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCStoreMBean instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCStores/{name} rel=canonical
This resource.
rel=dataSource
This resource's dataSource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCStores/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JDBCSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
Contains a list of weblogic.management.configuration.JMSBridgeDestinationMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSBridgeDestinations rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSBridgeDestinations/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSInteropModuleMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSInteropModuleMBean instances.
Contains a list of weblogic.management.configuration.JMSInteropModuleMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSInteropModuleMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSInteropModuleMBean instance.
Contains a weblogic.management.configuration.JMSInteropModuleMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.DestinationKeyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/destinationKeys rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/destinationKeys/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignServerBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignDestinationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.PropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/messageLoggingParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/queues/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QuotaBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/quotas rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/quotas/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
rel=SAFErrorDestination
This resource's SAFErrorDestination reference to a weblogic.j2ee.descriptor.wl.SAFDestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=SAFQueues
This resource's SAFQueues collection resource.
rel=SAFRemoteContext
This resource's SAFRemoteContext reference to a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name} rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TemplateBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.GroupParamsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName} rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/multicast rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/templates/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/messageLoggingParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/multicast rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/topics/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSServerMBean instances.
Contains a list of weblogic.management.configuration.JMSServerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSServers rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSServerMBean instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSServers rel=parent
The parent resource of this resource.
rel=persistentStore
This resource's persistentStore reference to a weblogic.management.configuration.PersistentStoreMBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSServers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSServers/{name}/JMSMessageLogFile rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSystemResourceMBean instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.DestinationKeyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/destinationKeys rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignServerBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignDestinationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.PropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QuotaBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/quotas rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
rel=SAFErrorDestination
This resource's SAFErrorDestination reference to a weblogic.j2ee.descriptor.wl.SAFDestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=SAFQueues
This resource's SAFQueues collection resource.
rel=SAFRemoteContext
This resource's SAFRemoteContext reference to a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TemplateBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.GroupParamsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName} rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.management.configuration.JMXMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMXMBean instance.
Contains a weblogic.management.configuration.JMXMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JMX rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JMX rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JoltConnectionPoolMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JoltConnectionPoolMBean instances.
Contains a list of weblogic.management.configuration.JoltConnectionPoolMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/joltConnectionPools rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/joltConnectionPools rel=self
This resource.
This resource manages a weblogic.management.configuration.JoltConnectionPoolMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JoltConnectionPoolMBean instance.
Contains a weblogic.management.configuration.JoltConnectionPoolMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/joltConnectionPools/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/joltConnectionPools rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/joltConnectionPools/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.JPAMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JPAMBean instance.
Contains a weblogic.management.configuration.JPAMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JPA rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JPA rel=self
This resource.
This resource manages a weblogic.management.configuration.JTAMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JTAMBean instance.
Contains a weblogic.management.configuration.JTAMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/JTA rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/JTA rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LibraryMBean instances.
Contains a list of weblogic.management.configuration.LibraryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/libraries rel=self
This resource.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LibraryMBean instance.
Contains a weblogic.management.configuration.LibraryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.management.configuration.LifecycleManagerConfigMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LifecycleManagerConfigMBean instance.
Contains a weblogic.management.configuration.LifecycleManagerConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig/configuredEndPoints rel=configuredEndPoints
This resource's configuredEndPoints collection resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig rel=self
This resource.
rel=target
This resource's target reference to a weblogic.management.configuration.TargetMBean resource.
This resource manages a collection of weblogic.management.configuration.LifecycleManagerEndPointMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LifecycleManagerEndPointMBean instances.
Contains a list of weblogic.management.configuration.LifecycleManagerEndPointMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig/configuredEndPoints rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig/configuredEndPoints rel=self
This resource.
This resource manages a weblogic.management.configuration.LifecycleManagerEndPointMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LifecycleManagerEndPointMBean instance.
Contains a weblogic.management.configuration.LifecycleManagerEndPointMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig/configuredEndPoints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig/configuredEndPoints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/lifecycleManagerConfig/configuredEndPoints/{name} rel=self
This resource.
The resource supports the following methods:
This resource manages a weblogic.management.configuration.LogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LogMBean instance.
Contains a weblogic.management.configuration.LogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/log rel=canonical
This resource.
rel=domainLogBroadcastFilter
This resource's domainLogBroadcastFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
rel=logFileFilter
This resource's logFileFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/log rel=self
This resource.
rel=stdoutFilter
This resource's stdoutFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
This resource manages a collection of weblogic.management.configuration.LogFilterMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LogFilterMBean instances.
Contains a list of weblogic.management.configuration.LogFilterMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/logFilters rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/logFilters rel=self
This resource.
This resource manages a weblogic.management.configuration.LogFilterMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LogFilterMBean instance.
Contains a weblogic.management.configuration.LogFilterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/logFilters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/logFilters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/logFilters/{name} rel=self
This resource.
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.MachineMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MachineMBean instances.
Contains a list of weblogic.management.configuration.MachineMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/machines rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/machines rel=self
This resource.
This resource manages a weblogic.management.configuration.MachineMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MachineMBean instance.
Contains a weblogic.management.configuration.MachineMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/machines/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/machines/{name}/nodeManager rel=nodeManager
This resource's nodeManager singleton resource.
uri=/management/weblogic/{version}/domainConfig/machines rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/machines/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.NodeManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.NodeManagerMBean instance.
Contains a weblogic.management.configuration.NodeManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/machines/{name}/nodeManager rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/machines/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/machines/{name}/nodeManager rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MailSessionMBean instances.
Contains a list of weblogic.management.configuration.MailSessionMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/mailSessions rel=self
This resource.
This resource manages a weblogic.management.configuration.MailSessionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MailSessionMBean instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/mailSessions/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServices/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.
Contains a list of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServiceTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedExecutorServiceTemplates/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServices/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.
Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServiceTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedScheduledExecutorServiceTemplates/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
Contains a list of weblogic.management.configuration.ManagedThreadFactoryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactories rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactories/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.
Contains a list of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedThreadFactoryTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactoryTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/managedThreadFactoryTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactoryTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/managedThreadFactoryTemplates/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.
Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/messagingBridges rel=self
This resource.
This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MessagingBridgeMBean instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/messagingBridges/{name} rel=self
This resource.
rel=sourceDestination
This resource's sourceDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
rel=targetDestination
This resource's targetDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
This resource manages a collection of weblogic.management.configuration.MigratableTargetMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MigratableTargetMBean instances.
Contains a list of weblogic.management.configuration.MigratableTargetMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/migratableTargets rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/migratableTargets rel=self
This resource.
This resource manages a weblogic.management.configuration.MigratableTargetMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MigratableTargetMBean instance.
Contains a weblogic.management.configuration.MigratableTargetMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/migratableTargets/{name} rel=canonical
This resource.
rel=cluster
This resource's cluster reference to a weblogic.management.configuration.ClusterMBean resource.
rel=hostingServer
This resource's hostingServer reference to a weblogic.management.configuration.ServerMBean resource.
uri=/management/weblogic/{version}/domainConfig/migratableTargets rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/migratableTargets/{name} rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
This resource manages a weblogic.management.configuration.OptionalFeatureDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OptionalFeatureDeploymentMBean instance.
Contains a weblogic.management.configuration.OptionalFeatureDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment/optionalFeatures rel=optionalFeatures
This resource's optionalFeatures collection resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.OptionalFeatureMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.OptionalFeatureMBean instances.
Contains a list of weblogic.management.configuration.OptionalFeatureMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment/optionalFeatures rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment/optionalFeatures rel=self
This resource.
This resource manages a weblogic.management.configuration.OptionalFeatureMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OptionalFeatureMBean instance.
Contains a weblogic.management.configuration.OptionalFeatureMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment/optionalFeatures/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment/optionalFeatures rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/optionalFeatureDeployment/optionalFeatures/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/osgiFrameworks rel=self
This resource.
This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OsgiFrameworkMBean instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/osgiFrameworks/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.PartitionMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.PartitionMBean instances.
Contains a list of weblogic.management.configuration.PartitionMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions rel=self
This resource.
This resource manages a weblogic.management.configuration.PartitionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.PartitionMBean instance.
Contains a weblogic.management.configuration.PartitionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JDBCSystemResourceOverrides rel=JDBCSystemResourceOverrides
This resource's JDBCSystemResourceOverrides collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides rel=JMSSystemResourceOverrides
This resource's JMSSystemResourceOverrides collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JTAPartition rel=JTAPartition
This resource's JTAPartition singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/findEffectiveServerNames rel=action title=findEffectiveServerNames
This resource's findEffectiveServerNames action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/lookupAvailableTarget rel=action title=lookupAvailableTarget
This resource's lookupAvailableTarget action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget rel=adminVirtualTarget
This resource's adminVirtualTarget singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs rel=coherencePartitionCacheConfigs
This resource's coherencePartitionCacheConfigs collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
rel=dataSourceForJobScheduler
This resource's dataSourceForJobScheduler reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/dataSourcePartition rel=dataSourcePartition
This resource's dataSourcePartition singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides rel=foreignJNDIProviderOverrides
This resource's foreignJNDIProviderOverrides collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments rel=internalAppDeployments
This resource's internalAppDeployments collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries rel=internalLibraries
This resource's internalLibraries collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/mailSessionOverrides rel=mailSessionOverrides
This resource's mailSessionOverrides collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedExecutorServiceTemplates rel=managedExecutorServiceTemplates
This resource's managedExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedScheduledExecutorServiceTemplates rel=managedScheduledExecutorServiceTemplates
This resource's managedScheduledExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedThreadFactoryTemplates rel=managedThreadFactoryTemplates
This resource's managedThreadFactoryTemplates collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/partitionLog rel=partitionLog
This resource's partitionLog singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/partitionWorkManager rel=partitionWorkManager
This resource's partitionWorkManager singleton resource.
rel=partitionWorkManagerRef
This resource's partitionWorkManagerRef reference to a weblogic.management.configuration.PartitionWorkManagerMBean resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups rel=resourceGroups
This resource's resourceGroups collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager rel=resourceManager
This resource's resourceManager singleton resource.
rel=resourceManagerRef
This resource's resourceManagerRef reference to a weblogic.management.configuration.ResourceManagerMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=selfTuning
This resource's selfTuning singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/systemFileSystem rel=systemFileSystem
This resource's systemFileSystem singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/userFileSystem rel=userFileSystem
This resource's userFileSystem singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService rel=webService
This resource's webService singleton resource.
This resource manages a weblogic.management.configuration.AdminVirtualTargetMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AdminVirtualTargetMBean instance.
Contains a weblogic.management.configuration.AdminVirtualTargetMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget/webServer rel=webServer
This resource's webServer singleton resource.
This resource manages a weblogic.management.configuration.WebServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerMBean instance.
Contains a weblogic.management.configuration.WebServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget/webServer rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
This resource manages a weblogic.management.configuration.WebServerLogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerLogMBean instance.
Contains a weblogic.management.configuration.WebServerLogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/adminVirtualTarget/webServer/webServerLog rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.CoherencePartitionCacheConfigMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CoherencePartitionCacheConfigMBean instances.
Contains a list of weblogic.management.configuration.CoherencePartitionCacheConfigMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs rel=self
This resource.
This resource manages a weblogic.management.configuration.CoherencePartitionCacheConfigMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherencePartitionCacheConfigMBean instance.
Contains a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties rel=coherencePartitionCacheProperties
This resource's coherencePartitionCacheProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.CoherencePartitionCachePropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CoherencePartitionCachePropertyMBean instances.
Contains a list of weblogic.management.configuration.CoherencePartitionCachePropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.CoherencePartitionCachePropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherencePartitionCachePropertyMBean instance.
Contains a weblogic.management.configuration.CoherencePartitionCachePropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/configurationProperties rel=self
This resource.
This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/configurationProperties/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.DataSourcePartitionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DataSourcePartitionMBean instance.
Contains a weblogic.management.configuration.DataSourcePartitionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/dataSourcePartition rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/dataSourcePartition rel=self
This resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDILinkOverrideMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDILinkOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDILinkOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDILinkOverrideMBean instance.
Contains a weblogic.management.configuration.ForeignJNDILinkOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.
Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AppDeploymentMBean instance.
Contains a weblogic.management.configuration.AppDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LibraryMBean instances.
Contains a list of weblogic.management.configuration.LibraryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries rel=self
This resource.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LibraryMBean instance.
Contains a weblogic.management.configuration.LibraryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCSystemResourceOverrideMBean instances.
Contains a list of weblogic.management.configuration.JDBCSystemResourceOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JDBCSystemResourceOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JDBCSystemResourceOverrides rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance.
Contains a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JDBCSystemResourceOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JDBCSystemResourceOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JDBCSystemResourceOverrides/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSSystemResourceOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSSystemResourceOverrideMBean instances.
Contains a list of weblogic.management.configuration.JMSSystemResourceOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSSystemResourceOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSystemResourceOverrideMBean instance.
Contains a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignServerOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignServerOverrideMBean instances.
Contains a list of weblogic.management.configuration.ForeignServerOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignServerOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignServerOverrideMBean instance.
Contains a weblogic.management.configuration.ForeignServerOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instances.
Contains a list of weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance.
Contains a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignDestinationOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignDestinationOverrideMBean instances.
Contains a list of weblogic.management.configuration.ForeignDestinationOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ForeignDestinationOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignDestinationOverrideMBean instance.
Contains a weblogic.management.configuration.ForeignDestinationOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.PartitionPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.PartitionPropertyMBean instances.
Contains a list of weblogic.management.configuration.PartitionPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.PartitionPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.PartitionPropertyMBean instance.
Contains a weblogic.management.configuration.PartitionPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.JTAPartitionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JTAPartitionMBean instance.
Contains a weblogic.management.configuration.JTAPartitionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JTAPartition rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/JTAPartition rel=self
This resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.MailSessionOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MailSessionOverrideMBean instances.
Contains a list of weblogic.management.configuration.MailSessionOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/mailSessionOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/mailSessionOverrides rel=self
This resource.
This resource manages a weblogic.management.configuration.MailSessionOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MailSessionOverrideMBean instance.
Contains a weblogic.management.configuration.MailSessionOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/mailSessionOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/mailSessionOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/mailSessionOverrides/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instances.
Contains a list of weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedExecutorServiceTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedExecutorServiceTemplates/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instances.
Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedScheduledExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedScheduledExecutorServiceTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedScheduledExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedScheduledExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedScheduledExecutorServiceTemplates/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instances.
Contains a list of weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedThreadFactoryTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedThreadFactoryTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedThreadFactoryTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedThreadFactoryTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/managedThreadFactoryTemplates/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.PartitionLogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.PartitionLogMBean instance.
Contains a weblogic.management.configuration.PartitionLogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/partitionLog rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/partitionLog rel=self
This resource.
This resource manages a weblogic.management.configuration.PartitionWorkManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.PartitionWorkManagerMBean instance.
Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/partitionWorkManager rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/partitionWorkManager rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ResourceGroupMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ResourceGroupMBean instances.
Contains a list of weblogic.management.configuration.ResourceGroupMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups rel=self
This resource.
This resource manages a weblogic.management.configuration.ResourceGroupMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResourceGroupMBean instance.
Contains a weblogic.management.configuration.ResourceGroupMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/findEffectiveTargets rel=action title=findEffectiveTargets
This resource's findEffectiveTargets action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/lookupTarget rel=action title=lookupTarget
This resource's lookupTarget action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=osgiFrameworks
This resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups rel=parent
The parent resource of this resource.
rel=resourceGroupTemplate
This resource's resourceGroupTemplate reference to a weblogic.management.configuration.ResourceGroupTemplateMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.
Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AppDeploymentMBean instance.
Contains a weblogic.management.configuration.AppDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.FileStoreMBean instances.
Contains a list of weblogic.management.configuration.FileStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/fileStores rel=self
This resource.
This resource manages a weblogic.management.configuration.FileStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FileStoreMBean instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/fileStores/{name} rel=self
This resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDIProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDILinkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.
Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCStores rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCStoreMBean instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCStores/{name} rel=canonical
This resource.
rel=dataSource
This resource's dataSource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCStores/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JDBCSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
Contains a list of weblogic.management.configuration.JMSBridgeDestinationMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSServerMBean instances.
Contains a list of weblogic.management.configuration.JMSServerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSServerMBean instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers rel=parent
The parent resource of this resource.
rel=persistentStore
This resource's persistentStore reference to a weblogic.management.configuration.PersistentStoreMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSystemResourceMBean instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.DestinationKeyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignServerBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignDestinationBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.PropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QuotaBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
rel=SAFErrorDestination
This resource's SAFErrorDestination reference to a weblogic.j2ee.descriptor.wl.SAFDestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=SAFQueues
This resource's SAFQueues collection resource.
rel=SAFRemoteContext
This resource's SAFRemoteContext reference to a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TemplateBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.GroupParamsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
This resource's multicast singleton resource.
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LibraryMBean instances.
Contains a list of weblogic.management.configuration.LibraryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries rel=self
This resource.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LibraryMBean instance.
Contains a weblogic.management.configuration.LibraryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MailSessionMBean instances.
Contains a list of weblogic.management.configuration.MailSessionMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/mailSessions rel=self
This resource.
This resource manages a weblogic.management.configuration.MailSessionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MailSessionMBean instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/mailSessions/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedExecutorServices/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
Contains a list of weblogic.management.configuration.ManagedThreadFactoryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/managedThreadFactories/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.
Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/messagingBridges rel=self
This resource.
This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MessagingBridgeMBean instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/messagingBridges/{name} rel=self
This resource.
rel=sourceDestination
This resource's sourceDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
rel=targetDestination
This resource's targetDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=self
This resource.
This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OsgiFrameworkMBean instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/osgiFrameworks/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SAFAgentMBean instances.
Contains a list of weblogic.management.configuration.SAFAgentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents rel=self
This resource.
This resource manages a weblogic.management.configuration.SAFAgentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SAFAgentMBean instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/SAFAgents/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=watchNotification
This resource's watchNotification singleton resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
This resource's actions collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
This resource's watches collection resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFImageNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFLogActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScriptActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFWatchBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource's schedule singleton resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ResourceManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResourceManagerMBean instance.
Contains a weblogic.management.configuration.ResourceManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization rel=cpuUtilization
This resource's cpuUtilization singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen rel=fileOpen
This resource's fileOpen singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained rel=heapRetained
This resource's heapRetained singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/restartLoopProtection rel=restartLoopProtection
This resource's restartLoopProtection singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager rel=self
This resource.
This resource manages a weblogic.management.configuration.CpuUtilizationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CpuUtilizationMBean instance.
Contains a weblogic.management.configuration.CpuUtilizationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/triggers rel=triggers
This resource's triggers collection resource.
This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareConstraintMBean instance.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.TriggerMBean instances.
Contains a list of weblogic.management.configuration.TriggerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/triggers rel=self
This resource.
This resource manages a weblogic.management.configuration.TriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TriggerMBean instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/cpuUtilization/triggers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.FileOpenMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FileOpenMBean instance.
Contains a weblogic.management.configuration.FileOpenMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen/triggers rel=triggers
This resource's triggers collection resource.
This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.TriggerMBean instances.
Contains a list of weblogic.management.configuration.TriggerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen/triggers rel=self
This resource.
This resource manages a weblogic.management.configuration.TriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TriggerMBean instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/fileOpen/triggers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.HeapRetainedMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.HeapRetainedMBean instance.
Contains a weblogic.management.configuration.HeapRetainedMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/triggers rel=triggers
This resource's triggers collection resource.
This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareConstraintMBean instance.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/fairShareConstraint rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.TriggerMBean instances.
Contains a list of weblogic.management.configuration.TriggerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/triggers rel=self
This resource.
This resource manages a weblogic.management.configuration.TriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TriggerMBean instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/heapRetained/triggers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.RestartLoopProtectionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.RestartLoopProtectionMBean instance.
Contains a weblogic.management.configuration.RestartLoopProtectionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/restartLoopProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/resourceManager/restartLoopProtection rel=self
This resource.
This resource manages a weblogic.management.configuration.SelfTuningMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SelfTuningMBean instance.
Contains a weblogic.management.configuration.SelfTuningMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/capacities rel=capacities
This resource's capacities collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses rel=contextRequestClasses
This resource's contextRequestClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/fairShareRequestClasses rel=fairShareRequestClasses
This resource's fairShareRequestClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/maxThreadsConstraints rel=maxThreadsConstraints
This resource's maxThreadsConstraints collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/minThreadsConstraints rel=minThreadsConstraints
This resource's minThreadsConstraints collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/responseTimeRequestClasses rel=responseTimeRequestClasses
This resource's responseTimeRequestClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers rel=workManagers
This resource's workManagers collection resource.
This resource manages a collection of weblogic.management.configuration.CapacityMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CapacityMBean instances.
Contains a list of weblogic.management.configuration.CapacityMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/capacities rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/capacities rel=self
This resource.
This resource manages a weblogic.management.configuration.CapacityMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CapacityMBean instance.
Contains a weblogic.management.configuration.CapacityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/capacities/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/capacities rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/capacities/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ContextRequestClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ContextRequestClassMBean instances.
Contains a list of weblogic.management.configuration.ContextRequestClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.ContextRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ContextRequestClassMBean instance.
Contains a weblogic.management.configuration.ContextRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=contextCases
This resource's contextCases collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ContextCaseMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ContextCaseMBean instances.
Contains a list of weblogic.management.configuration.ContextCaseMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=self
This resource.
This resource manages a weblogic.management.configuration.ContextCaseMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ContextCaseMBean instance.
Contains a weblogic.management.configuration.ContextCaseMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=fairShareRequestClass
This resource's fairShareRequestClass singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=responseTimeRequestClass
This resource's responseTimeRequestClass singleton resource.
This resource.
This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareRequestClassMBean instance.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.FairShareRequestClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.FairShareRequestClassMBean instances.
Contains a list of weblogic.management.configuration.FairShareRequestClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/fairShareRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/fairShareRequestClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareRequestClassMBean instance.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/fairShareRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/fairShareRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/fairShareRequestClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.
Contains a list of weblogic.management.configuration.MaxThreadsConstraintMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/maxThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/maxThreadsConstraints rel=self
This resource.
This resource manages a weblogic.management.configuration.MaxThreadsConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MaxThreadsConstraintMBean instance.
Contains a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/maxThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/maxThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/maxThreadsConstraints/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.
Contains a list of weblogic.management.configuration.MinThreadsConstraintMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/minThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/minThreadsConstraints rel=self
This resource.
This resource manages a weblogic.management.configuration.MinThreadsConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MinThreadsConstraintMBean instance.
Contains a weblogic.management.configuration.MinThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/minThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/minThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/minThreadsConstraints/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.
Contains a list of weblogic.management.configuration.ResponseTimeRequestClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/responseTimeRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/responseTimeRequestClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/responseTimeRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/responseTimeRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/responseTimeRequestClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WorkManagerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WorkManagerMBean instances.
Contains a list of weblogic.management.configuration.WorkManagerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers rel=self
This resource.
This resource manages a weblogic.management.configuration.WorkManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WorkManagerMBean instance.
Contains a weblogic.management.configuration.WorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers/{name} rel=canonical
This resource.
rel=capacity
This resource's capacity reference to a weblogic.management.configuration.CapacityMBean resource.
rel=contextRequestClass
This resource's contextRequestClass reference to a weblogic.management.configuration.ContextRequestClassMBean resource.
rel=fairShareRequestClass
This resource's fairShareRequestClass reference to a weblogic.management.configuration.FairShareRequestClassMBean resource.
rel=maxThreadsConstraint
This resource's maxThreadsConstraint reference to a weblogic.management.configuration.MaxThreadsConstraintMBean resource.
rel=minThreadsConstraint
This resource's minThreadsConstraint reference to a weblogic.management.configuration.MinThreadsConstraintMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers rel=parent
The parent resource of this resource.
rel=responseTimeRequestClass
This resource's responseTimeRequestClass reference to a weblogic.management.configuration.ResponseTimeRequestClassMBean resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=workManagerShutdownTrigger
This resource's workManagerShutdownTrigger singleton resource.
This resource manages a weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.
Contains a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/selfTuning/workManagers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.PartitionFileSystemMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.PartitionFileSystemMBean instance.
Contains a weblogic.management.configuration.PartitionFileSystemMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/systemFileSystem rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/systemFileSystem rel=self
This resource.
This resource manages a weblogic.management.configuration.PartitionUserFileSystemMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.PartitionUserFileSystemMBean instance.
Contains a weblogic.management.configuration.PartitionUserFileSystemMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/userFileSystem rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/userFileSystem rel=self
This resource.
This resource manages a weblogic.management.configuration.WebServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceMBean instance.
Contains a weblogic.management.configuration.WebServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering rel=webServiceBuffering
This resource's webServiceBuffering singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence rel=webServicePersistence
This resource's webServicePersistence singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceReliability rel=webServiceReliability
This resource's webServiceReliability singleton resource.
This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceBufferingMBean instance.
Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=webServiceRequestBufferingQueue
This resource's webServiceRequestBufferingQueue singleton resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=webServiceResponseBufferingQueue
This resource's webServiceResponseBufferingQueue singleton resource.
This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
Contains a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
Contains a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServicePersistenceMBean instance.
Contains a weblogic.management.configuration.WebServicePersistenceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=webServiceLogicalStores
This resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=webServicePhysicalStores
This resource's webServicePhysicalStores collection resource.
This resource manages a collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.
Contains a list of weblogic.management.configuration.WebServiceLogicalStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
Contains a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.
Contains a list of weblogic.management.configuration.WebServicePhysicalStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
Contains a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceReliabilityMBean instance.
Contains a weblogic.management.configuration.WebServiceReliabilityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceReliability rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitions/{name}/webService/webServiceReliability rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.PartitionWorkManagerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.PartitionWorkManagerMBean instances.
Contains a list of weblogic.management.configuration.PartitionWorkManagerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitionWorkManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitionWorkManagers rel=self
This resource.
This resource manages a weblogic.management.configuration.PartitionWorkManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.PartitionWorkManagerMBean instance.
Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/partitionWorkManagers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/partitionWorkManagers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/partitionWorkManagers/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ReplicatedStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ReplicatedStoreMBean instances.
Contains a list of weblogic.management.configuration.ReplicatedStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/replicatedStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/replicatedStores rel=self
This resource.
This resource manages a weblogic.management.configuration.ReplicatedStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ReplicatedStoreMBean instance.
Contains a weblogic.management.configuration.ReplicatedStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/replicatedStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/replicatedStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/replicatedStores/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ResourceGroupMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ResourceGroupMBean instances.
Contains a list of weblogic.management.configuration.ResourceGroupMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups rel=self
This resource.
This resource manages a weblogic.management.configuration.ResourceGroupMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResourceGroupMBean instance.
Contains a weblogic.management.configuration.ResourceGroupMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/findEffectiveTargets rel=action title=findEffectiveTargets
This resource's findEffectiveTargets action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/lookupTarget rel=action title=lookupTarget
This resource's lookupTarget action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/osgiFrameworks rel=osgiFrameworks
This resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups rel=parent
The parent resource of this resource.
rel=resourceGroupTemplate
This resource's resourceGroupTemplate reference to a weblogic.management.configuration.ResourceGroupTemplateMBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.
Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AppDeploymentMBean instance.
Contains a weblogic.management.configuration.AppDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.FileStoreMBean instances.
Contains a list of weblogic.management.configuration.FileStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/fileStores rel=self
This resource.
This resource manages a weblogic.management.configuration.FileStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FileStoreMBean instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/fileStores/{name} rel=self
This resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDIProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDILinkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.
Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCStores rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCStoreMBean instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCStores/{name} rel=canonical
This resource.
rel=dataSource
This resource's dataSource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCStores/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JDBCSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
Contains a list of weblogic.management.configuration.JMSBridgeDestinationMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSBridgeDestinations rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSServerMBean instances.
Contains a list of weblogic.management.configuration.JMSServerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSServerMBean instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers rel=parent
The parent resource of this resource.
rel=persistentStore
This resource's persistentStore reference to a weblogic.management.configuration.PersistentStoreMBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSystemResourceMBean instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.DestinationKeyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignServerBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignDestinationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.PropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QuotaBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=self
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
rel=SAFErrorDestination
This resource's SAFErrorDestination reference to a weblogic.j2ee.descriptor.wl.SAFDestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=SAFQueues
This resource's SAFQueues collection resource.
rel=SAFRemoteContext
This resource's SAFRemoteContext reference to a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TemplateBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.GroupParamsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName} rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=self
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LibraryMBean instances.
Contains a list of weblogic.management.configuration.LibraryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries rel=self
This resource.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LibraryMBean instance.
Contains a weblogic.management.configuration.LibraryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MailSessionMBean instances.
Contains a list of weblogic.management.configuration.MailSessionMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/mailSessions rel=self
This resource.
This resource manages a weblogic.management.configuration.MailSessionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MailSessionMBean instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/mailSessions/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedExecutorServices/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedScheduledExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedScheduledExecutorServices/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
Contains a list of weblogic.management.configuration.ManagedThreadFactoryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedThreadFactories rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/managedThreadFactories/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.
Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/messagingBridges rel=self
This resource.
This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MessagingBridgeMBean instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/messagingBridges/{name} rel=self
This resource.
rel=sourceDestination
This resource's sourceDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
rel=targetDestination
This resource's targetDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/osgiFrameworks rel=self
This resource.
This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OsgiFrameworkMBean instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/osgiFrameworks/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SAFAgentMBean instances.
Contains a list of weblogic.management.configuration.SAFAgentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents rel=self
This resource.
This resource manages a weblogic.management.configuration.SAFAgentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SAFAgentMBean instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=watchNotification
This resource's watchNotification singleton resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=self
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=watches
This resource's watches collection resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFImageNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFLogActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=parent
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScriptActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFWatchBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=schedule
This resource's schedule singleton resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.ResourceGroupTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ResourceGroupTemplateMBean instances.
Contains a list of weblogic.management.configuration.ResourceGroupTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ResourceGroupTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResourceGroupTemplateMBean instance.
Contains a weblogic.management.configuration.ResourceGroupTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/osgiFrameworks rel=osgiFrameworks
This resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.AppDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.AppDeploymentMBean instances.
Contains a list of weblogic.management.configuration.AppDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AppDeploymentMBean instance.
Contains a weblogic.management.configuration.AppDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.FileStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.FileStoreMBean instances.
Contains a list of weblogic.management.configuration.FileStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/fileStores rel=self
This resource.
This resource manages a weblogic.management.configuration.FileStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FileStoreMBean instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/fileStores/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDIProviderMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDIProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders rel=self
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDIProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ForeignJNDILinkMBean instances.
Contains a list of weblogic.management.configuration.ForeignJNDILinkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ForeignJNDILinkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCStoreMBean instances.
Contains a list of weblogic.management.configuration.JDBCStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCStores rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCStoreMBean instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCStores/{name} rel=canonical
This resource.
rel=dataSource
This resource's dataSource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCStores/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JDBCSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JDBCSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=self
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertiesBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JDBCPropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JDBCPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSBridgeDestinationMBean instances.
Contains a list of weblogic.management.configuration.JMSBridgeDestinationMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSBridgeDestinationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSBridgeDestinations/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSServerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSServerMBean instances.
Contains a list of weblogic.management.configuration.JMSServerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSServerMBean instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers rel=parent
The parent resource of this resource.
rel=persistentStore
This resource's persistentStore reference to a weblogic.management.configuration.PersistentStoreMBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JMSSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.JMSSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.JMSSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSystemResourceMBean instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.DestinationKeyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.DestinationKeyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignServerBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignServerBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.ForeignDestinationBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.ForeignDestinationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.PropertyBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.PropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.PropertyBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.QuotaBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.QuotaBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.QuotaBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
rel=SAFErrorDestination
This resource's SAFErrorDestination reference to a weblogic.j2ee.descriptor.wl.SAFDestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=SAFQueues
This resource's SAFQueues collection resource.
rel=SAFRemoteContext
This resource's SAFRemoteContext reference to a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
rel=SAFErrorHandling
This resource's SAFErrorHandling reference to a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Contains a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TemplateBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TemplateBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TemplateBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.GroupParamsBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.GroupParamsBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams/{subDeploymentName} rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.TopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.TopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.TopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics rel=parent
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=canonical
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
The resource supports the following methods:
Get this collection of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instances.
Contains a list of weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
The parent resource of this resource.
rel=quota
This resource's quota reference to a weblogic.j2ee.descriptor.wl.QuotaBean resource.
This resource.
rel=template
This resource's template reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
This resource.
rel=errorDestination
This resource's errorDestination reference to a weblogic.j2ee.descriptor.wl.DestinationBean resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
The resource supports the following methods:
This resource manages a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Contains a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
The parent resource of this resource.
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.LibraryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.LibraryMBean instances.
Contains a list of weblogic.management.configuration.LibraryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries rel=self
This resource.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LibraryMBean instance.
Contains a weblogic.management.configuration.LibraryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.MailSessionMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MailSessionMBean instances.
Contains a list of weblogic.management.configuration.MailSessionMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/mailSessions rel=self
This resource.
This resource manages a weblogic.management.configuration.MailSessionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MailSessionMBean instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/mailSessions/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedExecutorServices/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instances.
Contains a list of weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedScheduledExecutorServices/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ManagedThreadFactoryMBean instances.
Contains a list of weblogic.management.configuration.ManagedThreadFactoryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedThreadFactories rel=self
This resource.
This resource manages a weblogic.management.configuration.ManagedThreadFactoryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/managedThreadFactories/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MessagingBridgeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MessagingBridgeMBean instances.
Contains a list of weblogic.management.configuration.MessagingBridgeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/messagingBridges rel=self
This resource.
This resource manages a weblogic.management.configuration.MessagingBridgeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MessagingBridgeMBean instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/messagingBridges/{name} rel=self
This resource.
rel=sourceDestination
This resource's sourceDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
rel=targetDestination
This resource's targetDestination reference to a weblogic.management.configuration.BridgeDestinationCommonMBean resource.
This resource manages a collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.OsgiFrameworkMBean instances.
Contains a list of weblogic.management.configuration.OsgiFrameworkMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/osgiFrameworks rel=self
This resource.
This resource manages a weblogic.management.configuration.OsgiFrameworkMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OsgiFrameworkMBean instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/osgiFrameworks/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SAFAgentMBean instances.
Contains a list of weblogic.management.configuration.SAFAgentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents rel=self
This resource.
This resource manages a weblogic.management.configuration.SAFAgentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SAFAgentMBean instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=watchNotification
This resource's watchNotification singleton resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=watches
This resource's watches collection resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFImageNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFLogActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScriptActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFWatchBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource's schedule singleton resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ResourceManagementMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResourceManagementMBean instance.
Contains a weblogic.management.configuration.ResourceManagementMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers rel=resourceManagers
This resource's resourceManagers collection resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ResourceManagerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ResourceManagerMBean instances.
Contains a list of weblogic.management.configuration.ResourceManagerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers rel=self
This resource.
This resource manages a weblogic.management.configuration.ResourceManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResourceManagerMBean instance.
Contains a weblogic.management.configuration.ResourceManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization rel=cpuUtilization
This resource's cpuUtilization singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen rel=fileOpen
This resource's fileOpen singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained rel=heapRetained
This resource's heapRetained singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/restartLoopProtection rel=restartLoopProtection
This resource's restartLoopProtection singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.CpuUtilizationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CpuUtilizationMBean instance.
Contains a weblogic.management.configuration.CpuUtilizationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=triggers
This resource's triggers collection resource.
This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareConstraintMBean instance.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.TriggerMBean instances.
Contains a list of weblogic.management.configuration.TriggerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=self
This resource.
This resource manages a weblogic.management.configuration.TriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TriggerMBean instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.FileOpenMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FileOpenMBean instance.
Contains a weblogic.management.configuration.FileOpenMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=triggers
This resource's triggers collection resource.
This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.TriggerMBean instances.
Contains a list of weblogic.management.configuration.TriggerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=self
This resource.
This resource manages a weblogic.management.configuration.TriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TriggerMBean instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/fileOpen/triggers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.HeapRetainedMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.HeapRetainedMBean instance.
Contains a weblogic.management.configuration.HeapRetainedMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=triggers
This resource's triggers collection resource.
This resource manages a weblogic.management.configuration.FairShareConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareConstraintMBean instance.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.TriggerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.TriggerMBean instances.
Contains a list of weblogic.management.configuration.TriggerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=self
This resource.
This resource manages a weblogic.management.configuration.TriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TriggerMBean instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/heapRetained/triggers/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.RestartLoopProtectionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.RestartLoopProtectionMBean instance.
Contains a weblogic.management.configuration.RestartLoopProtectionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/restartLoopProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/resourceManagement/resourceManagers/{name}/restartLoopProtection rel=self
This resource.
This resource manages a weblogic.management.configuration.RestfulManagementServicesMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.RestfulManagementServicesMBean instance.
Contains a weblogic.management.configuration.RestfulManagementServicesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/restfulManagementServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/restfulManagementServices rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SAFAgentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SAFAgentMBean instances.
Contains a list of weblogic.management.configuration.SAFAgentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SAFAgents rel=self
This resource.
This resource manages a weblogic.management.configuration.SAFAgentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SAFAgentMBean instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
This resource manages a weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Contains a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SAFAgents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SAFAgents/{name}/JMSSAFMessageLogFile rel=self
This resource.
This resource manages a weblogic.management.configuration.SecurityConfigurationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SecurityConfigurationMBean instance.
Contains a weblogic.management.configuration.SecurityConfigurationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC rel=JASPIC
This resource's JASPIC singleton resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc rel=certRevoc
This resource's certRevoc singleton resource.
rel=defaultRealm
This resource's defaultRealm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms rel=realms
This resource's realms collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/secureMode rel=secureMode
This resource's secureMode singleton resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration rel=self
This resource.
This resource manages a weblogic.management.configuration.CertRevocMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CertRevocMBean instance.
Contains a weblogic.management.configuration.CertRevocMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc/certRevocCas rel=certRevocCas
This resource's certRevocCas collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.CertRevocCaMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CertRevocCaMBean instances.
Contains a list of weblogic.management.configuration.CertRevocCaMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc/certRevocCas rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc/certRevocCas rel=self
This resource.
This resource manages a weblogic.management.configuration.CertRevocCaMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CertRevocCaMBean instance.
Contains a weblogic.management.configuration.CertRevocCaMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc/certRevocCas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc/certRevocCas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/certRevoc/certRevocCas/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.JASPICMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JASPICMBean instance.
Contains a weblogic.management.configuration.JASPICMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC/authConfigProviders rel=authConfigProviders
This resource's authConfigProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.AuthConfigProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.AuthConfigProviderMBean instances.
Contains a list of weblogic.management.configuration.AuthConfigProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC/authConfigProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC/authConfigProviders rel=self
This resource.
This resource manages a weblogic.management.configuration.AuthConfigProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.AuthConfigProviderMBean instance.
Contains a weblogic.management.configuration.AuthConfigProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC/authConfigProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC/authConfigProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/JASPIC/authConfigProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.security.RealmMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.RealmMBean instances.
Contains a list of weblogic.management.security.RealmMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms rel=self
This resource.
This resource manages a weblogic.management.security.RealmMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.RealmMBean instance.
Contains a weblogic.management.security.RealmMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/RDBMSSecurityStore rel=RDBMSSecurityStore
This resource's RDBMSSecurityStore singleton resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/adjudicator rel=adjudicator
This resource's adjudicator singleton resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/auditors rel=auditors
This resource's auditors collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authenticationProviders rel=authenticationProviders
This resource's authenticationProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authorizers rel=authorizers
This resource's authorizers collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=canonical
This resource.
rel=certPathBuilder
This resource's certPathBuilder reference to a weblogic.management.security.pk.CertPathBuilderMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/certPathProviders rel=certPathProviders
This resource's certPathProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/credentialMappers rel=credentialMappers
This resource's credentialMappers collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/passwordValidators rel=passwordValidators
This resource's passwordValidators collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/roleMappers rel=roleMappers
This resource's roleMappers collection resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/userLockoutManager rel=userLockoutManager
This resource's userLockoutManager singleton resource.
This resource manages a weblogic.management.security.authorization.AdjudicatorMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.authorization.AdjudicatorMBean instance.
Contains a weblogic.management.security.authorization.AdjudicatorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/adjudicator rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/adjudicator rel=self
This resource.
This resource manages a collection of weblogic.management.security.audit.AuditorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.audit.AuditorMBean instances.
Contains a list of weblogic.management.security.audit.AuditorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/auditors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/auditors rel=self
This resource.
This resource manages a weblogic.management.security.audit.AuditorMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.audit.AuditorMBean instance.
Contains a weblogic.management.security.audit.AuditorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/auditors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/auditors rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/auditors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.security.authentication.AuthenticationProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.authentication.AuthenticationProviderMBean instances.
Contains a list of weblogic.management.security.authentication.AuthenticationProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authenticationProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authenticationProviders rel=self
This resource.
This resource manages a weblogic.management.security.authentication.AuthenticationProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.authentication.AuthenticationProviderMBean instance.
Contains a weblogic.management.security.authentication.AuthenticationProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authenticationProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authenticationProviders rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authenticationProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.security.authorization.AuthorizerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.authorization.AuthorizerMBean instances.
Contains a list of weblogic.management.security.authorization.AuthorizerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authorizers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authorizers rel=self
This resource.
This resource manages a weblogic.management.security.authorization.AuthorizerMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.authorization.AuthorizerMBean instance.
Contains a weblogic.management.security.authorization.AuthorizerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authorizers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authorizers rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/authorizers/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.security.pk.CertPathProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.pk.CertPathProviderMBean instances.
Contains a list of weblogic.management.security.pk.CertPathProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/certPathProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/certPathProviders rel=self
This resource.
This resource manages a weblogic.management.security.pk.CertPathProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.pk.CertPathProviderMBean instance.
Contains a weblogic.management.security.pk.CertPathProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/certPathProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/certPathProviders rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/certPathProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.security.credentials.CredentialMapperMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.credentials.CredentialMapperMBean instances.
Contains a list of weblogic.management.security.credentials.CredentialMapperMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/credentialMappers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/credentialMappers rel=self
This resource.
This resource manages a weblogic.management.security.credentials.CredentialMapperMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.credentials.CredentialMapperMBean instance.
Contains a weblogic.management.security.credentials.CredentialMapperMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/credentialMappers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/credentialMappers rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/credentialMappers/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.security.authentication.PasswordValidatorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.authentication.PasswordValidatorMBean instances.
Contains a list of weblogic.management.security.authentication.PasswordValidatorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/passwordValidators rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/passwordValidators rel=self
This resource.
This resource manages a weblogic.management.security.authentication.PasswordValidatorMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.authentication.PasswordValidatorMBean instance.
Contains a weblogic.management.security.authentication.PasswordValidatorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/passwordValidators/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/passwordValidators rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/passwordValidators/{name} rel=self
This resource.
This resource manages a weblogic.management.security.RDBMSSecurityStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.RDBMSSecurityStoreMBean instance.
Contains a weblogic.management.security.RDBMSSecurityStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/RDBMSSecurityStore rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/RDBMSSecurityStore rel=self
This resource.
This resource manages a collection of weblogic.management.security.authorization.RoleMapperMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.security.authorization.RoleMapperMBean instances.
Contains a list of weblogic.management.security.authorization.RoleMapperMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/roleMappers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/roleMappers rel=self
This resource.
This resource manages a weblogic.management.security.authorization.RoleMapperMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.authorization.RoleMapperMBean instance.
Contains a weblogic.management.security.authorization.RoleMapperMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/roleMappers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/roleMappers rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/roleMappers/{name} rel=self
This resource.
This resource manages a weblogic.management.security.authentication.UserLockoutManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.security.authentication.UserLockoutManagerMBean instance.
Contains a weblogic.management.security.authentication.UserLockoutManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/userLockoutManager rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
rel=realm
This resource's realm reference to a weblogic.management.security.RealmMBean resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/realms/{name}/userLockoutManager rel=self
This resource.
This resource manages a weblogic.management.configuration.SecureModeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SecureModeMBean instance.
Contains a weblogic.management.configuration.SecureModeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/secureMode rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/securityConfiguration/secureMode rel=self
This resource.
This resource manages a weblogic.management.configuration.SelfTuningMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SelfTuningMBean instance.
Contains a weblogic.management.configuration.SelfTuningMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/capacities rel=capacities
This resource's capacities collection resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses rel=contextRequestClasses
This resource's contextRequestClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/fairShareRequestClasses rel=fairShareRequestClasses
This resource's fairShareRequestClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/maxThreadsConstraints rel=maxThreadsConstraints
This resource's maxThreadsConstraints collection resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/minThreadsConstraints rel=minThreadsConstraints
This resource's minThreadsConstraints collection resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/responseTimeRequestClasses rel=responseTimeRequestClasses
This resource's responseTimeRequestClasses collection resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers rel=workManagers
This resource's workManagers collection resource.
This resource manages a collection of weblogic.management.configuration.CapacityMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.CapacityMBean instances.
Contains a list of weblogic.management.configuration.CapacityMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/capacities rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/capacities rel=self
This resource.
This resource manages a weblogic.management.configuration.CapacityMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CapacityMBean instance.
Contains a weblogic.management.configuration.CapacityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/capacities/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/capacities rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/capacities/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ContextRequestClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ContextRequestClassMBean instances.
Contains a list of weblogic.management.configuration.ContextRequestClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.ContextRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ContextRequestClassMBean instance.
Contains a weblogic.management.configuration.ContextRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases rel=contextCases
This resource's contextCases collection resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ContextCaseMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ContextCaseMBean instances.
Contains a list of weblogic.management.configuration.ContextCaseMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases rel=self
This resource.
This resource manages a weblogic.management.configuration.ContextCaseMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ContextCaseMBean instance.
Contains a weblogic.management.configuration.ContextCaseMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=fairShareRequestClass
This resource's fairShareRequestClass singleton resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=responseTimeRequestClass
This resource's responseTimeRequestClass singleton resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareRequestClassMBean instance.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.FairShareRequestClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.FairShareRequestClassMBean instances.
Contains a list of weblogic.management.configuration.FairShareRequestClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/fairShareRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/fairShareRequestClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.FairShareRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FairShareRequestClassMBean instance.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/fairShareRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/fairShareRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/fairShareRequestClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MaxThreadsConstraintMBean instances.
Contains a list of weblogic.management.configuration.MaxThreadsConstraintMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/maxThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/maxThreadsConstraints rel=self
This resource.
This resource manages a weblogic.management.configuration.MaxThreadsConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MaxThreadsConstraintMBean instance.
Contains a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/maxThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/maxThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/maxThreadsConstraints/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.MinThreadsConstraintMBean instances.
Contains a list of weblogic.management.configuration.MinThreadsConstraintMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/minThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/minThreadsConstraints rel=self
This resource.
This resource manages a weblogic.management.configuration.MinThreadsConstraintMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.MinThreadsConstraintMBean instance.
Contains a weblogic.management.configuration.MinThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/minThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/minThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/minThreadsConstraints/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ResponseTimeRequestClassMBean instances.
Contains a list of weblogic.management.configuration.ResponseTimeRequestClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/responseTimeRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/responseTimeRequestClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/responseTimeRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/responseTimeRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/responseTimeRequestClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WorkManagerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WorkManagerMBean instances.
Contains a list of weblogic.management.configuration.WorkManagerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers rel=self
This resource.
This resource manages a weblogic.management.configuration.WorkManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WorkManagerMBean instance.
Contains a weblogic.management.configuration.WorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers/{name} rel=canonical
This resource.
rel=capacity
This resource's capacity reference to a weblogic.management.configuration.CapacityMBean resource.
rel=contextRequestClass
This resource's contextRequestClass reference to a weblogic.management.configuration.ContextRequestClassMBean resource.
rel=fairShareRequestClass
This resource's fairShareRequestClass reference to a weblogic.management.configuration.FairShareRequestClassMBean resource.
rel=maxThreadsConstraint
This resource's maxThreadsConstraint reference to a weblogic.management.configuration.MaxThreadsConstraintMBean resource.
rel=minThreadsConstraint
This resource's minThreadsConstraint reference to a weblogic.management.configuration.MinThreadsConstraintMBean resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers rel=parent
The parent resource of this resource.
rel=responseTimeRequestClass
This resource's responseTimeRequestClass reference to a weblogic.management.configuration.ResponseTimeRequestClassMBean resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=workManagerShutdownTrigger
This resource's workManagerShutdownTrigger singleton resource.
This resource manages a weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance.
Contains a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ServerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ServerMBean instances.
Contains a list of weblogic.management.configuration.ServerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers rel=self
This resource.
This resource manages a weblogic.management.configuration.ServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerMBean instance.
Contains a weblogic.management.configuration.ServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/COM rel=COM
This resource's COM singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/IIOP rel=IIOP
This resource's IIOP singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/JTAMigratableTarget rel=JTAMigratableTarget
This resource's JTAMigratableTarget singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/SSL rel=SSL
This resource's SSL singleton resource.
rel=XMLEntityCache
This resource's XMLEntityCache reference to a weblogic.management.configuration.XMLEntityCacheMBean resource.
rel=XMLRegistry
This resource's XMLRegistry reference to a weblogic.management.configuration.XMLRegistryMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=canonical
This resource.
rel=cluster
This resource's cluster reference to a weblogic.management.configuration.ClusterMBean resource.
rel=coherenceClusterSystemResource
This resource's coherenceClusterSystemResource reference to a weblogic.management.configuration.CoherenceClusterSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/coherenceMemberConfig rel=coherenceMemberConfig
This resource's coherenceMemberConfig singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/dataSource rel=dataSource
This resource's dataSource singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/defaultFileStore rel=defaultFileStore
This resource's defaultFileStore singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/executeQueues rel=executeQueues
This resource's executeQueues collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/federationServices rel=federationServices
This resource's federationServices singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/log rel=log
This resource's log singleton resource.
rel=machine
This resource's machine reference to a weblogic.management.configuration.MachineMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/networkAccessPoints rel=networkAccessPoints
This resource's networkAccessPoints collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/overloadProtection rel=overloadProtection
This resource's overloadProtection singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers rel=parent
The parent resource of this resource.
rel=reliableDeliveryPolicy
This resource's reliableDeliveryPolicy reference to a weblogic.management.configuration.WSReliableDeliveryPolicyMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug rel=serverDebug
This resource's serverDebug singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig rel=serverDiagnosticConfig
This resource's serverDiagnosticConfig singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverStart rel=serverStart
This resource's serverStart singleton resource.
rel=serverTemplate
This resource's serverTemplate reference to a weblogic.management.configuration.ServerTemplateMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/singleSignOnServices rel=singleSignOnServices
This resource's singleSignOnServices singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/transactionLogJDBCStore rel=transactionLogJDBCStore
This resource's transactionLogJDBCStore singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webServer rel=webServer
This resource's webServer singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService rel=webService
This resource's webService singleton resource.
This resource manages a weblogic.management.configuration.CoherenceMemberConfigMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceMemberConfigMBean instance.
Contains a weblogic.management.configuration.CoherenceMemberConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/coherenceMemberConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/coherenceMemberConfig rel=self
This resource.
This resource manages a weblogic.management.configuration.COMMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.COMMBean instance.
Contains a weblogic.management.configuration.COMMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/COM rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/COM rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/configurationProperties rel=self
This resource.
This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/configurationProperties/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.DataSourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DataSourceMBean instance.
Contains a weblogic.management.configuration.DataSourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/dataSource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/dataSource/dataSourceLogFile rel=dataSourceLogFile
This resource's dataSourceLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/dataSource rel=self
This resource.
This resource manages a weblogic.management.configuration.DataSourceLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DataSourceLogFileMBean instance.
Contains a weblogic.management.configuration.DataSourceLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/dataSource/dataSourceLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/dataSource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/dataSource/dataSourceLogFile rel=self
This resource.
This resource manages a weblogic.management.configuration.DefaultFileStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DefaultFileStoreMBean instance.
Contains a weblogic.management.configuration.DefaultFileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/defaultFileStore rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/defaultFileStore rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ExecuteQueueMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ExecuteQueueMBean instances.
Contains a list of weblogic.management.configuration.ExecuteQueueMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/executeQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/executeQueues rel=self
This resource.
This resource manages a weblogic.management.configuration.ExecuteQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ExecuteQueueMBean instance.
Contains a weblogic.management.configuration.ExecuteQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/executeQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/executeQueues rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/executeQueues/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.FederationServicesMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FederationServicesMBean instance.
Contains a weblogic.management.configuration.FederationServicesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/federationServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/federationServices rel=self
This resource.
This resource manages a weblogic.management.configuration.IIOPMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.IIOPMBean instance.
Contains a weblogic.management.configuration.IIOPMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/IIOP rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/IIOP rel=self
This resource.
This resource manages a weblogic.management.configuration.JTAMigratableTargetMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JTAMigratableTargetMBean instance.
Contains a weblogic.management.configuration.JTAMigratableTargetMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/JTAMigratableTarget rel=canonical
This resource.
rel=cluster
This resource's cluster reference to a weblogic.management.configuration.ClusterMBean resource.
rel=hostingServer
This resource's hostingServer reference to a weblogic.management.configuration.ServerMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/JTAMigratableTarget rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
This resource manages a weblogic.management.configuration.LogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LogMBean instance.
Contains a weblogic.management.configuration.LogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/log rel=canonical
This resource.
rel=domainLogBroadcastFilter
This resource's domainLogBroadcastFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
rel=logFileFilter
This resource's logFileFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/log rel=self
This resource.
rel=stdoutFilter
This resource's stdoutFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
This resource manages a collection of weblogic.management.configuration.NetworkAccessPointMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.NetworkAccessPointMBean instances.
Contains a list of weblogic.management.configuration.NetworkAccessPointMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/networkAccessPoints rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/networkAccessPoints rel=self
This resource.
This resource manages a weblogic.management.configuration.NetworkAccessPointMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.NetworkAccessPointMBean instance.
Contains a weblogic.management.configuration.NetworkAccessPointMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/networkAccessPoints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/networkAccessPoints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/networkAccessPoints/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OverloadProtectionMBean instance.
Contains a weblogic.management.configuration.OverloadProtectionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/overloadProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/overloadProtection rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/overloadProtection/serverFailureTrigger rel=serverFailureTrigger
This resource's serverFailureTrigger singleton resource.
This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerFailureTriggerMBean instance.
Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/overloadProtection/serverFailureTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/overloadProtection/serverFailureTrigger rel=self
This resource.
This resource manages a weblogic.management.configuration.ServerDebugMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerDebugMBean instance.
Contains a weblogic.management.configuration.ServerDebugMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug/debugScopes rel=debugScopes
This resource's debugScopes collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug rel=self
This resource.
rel=server
This resource's server reference to a weblogic.management.configuration.ServerMBean resource.
This resource manages a collection of weblogic.management.configuration.DebugScopeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.DebugScopeMBean instances.
Contains a list of weblogic.management.configuration.DebugScopeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug/debugScopes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug/debugScopes rel=self
This resource.
This resource manages a weblogic.management.configuration.DebugScopeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DebugScopeMBean instance.
Contains a weblogic.management.configuration.DebugScopeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug/debugScopes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug/debugScopes rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDebug/debugScopes/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFServerDiagnosticMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.
Contains a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=WLDFBuiltinSystemResourceDescriptorBean
This resource's WLDFBuiltinSystemResourceDescriptorBean singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=WLDFDataRetirementByAges
This resource's WLDFDataRetirementByAges collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement rel=action title=lookupWLDFDataRetirement
This resource's lookupWLDFDataRetirement action resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig rel=canonical
This resource.
rel=diagnosticJDBCResource
This resource's diagnosticJDBCResource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig rel=self
This resource.
The resource supports the following methods:
This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=watchNotification
This resource's watchNotification singleton resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
This resource's actions collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
This resource's watches collection resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFImageNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFLogActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScriptActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFWatchBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource's schedule singleton resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.
Contains a list of weblogic.management.configuration.WLDFDataRetirementByAgeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.
Contains a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.ServerStartMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerStartMBean instance.
Contains a weblogic.management.configuration.ServerStartMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverStart rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/serverStart rel=self
This resource.
This resource manages a weblogic.management.configuration.SingleSignOnServicesMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SingleSignOnServicesMBean instance.
Contains a weblogic.management.configuration.SingleSignOnServicesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/singleSignOnServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/singleSignOnServices rel=self
This resource.
This resource manages a weblogic.management.configuration.SSLMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SSLMBean instance.
Contains a weblogic.management.configuration.SSLMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/SSL rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/SSL rel=self
This resource.
This resource manages a weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.
Contains a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/transactionLogJDBCStore rel=canonical
This resource.
rel=dataSource
This resource's dataSource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/transactionLogJDBCStore rel=self
This resource.
This resource manages a weblogic.management.configuration.WebServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerMBean instance.
Contains a weblogic.management.configuration.WebServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webServer rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
This resource manages a weblogic.management.configuration.WebServerLogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerLogMBean instance.
Contains a weblogic.management.configuration.WebServerLogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webServer/webServerLog rel=self
This resource.
This resource manages a weblogic.management.configuration.WebServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceMBean instance.
Contains a weblogic.management.configuration.WebServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering rel=webServiceBuffering
This resource's webServiceBuffering singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence rel=webServicePersistence
This resource's webServicePersistence singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceReliability rel=webServiceReliability
This resource's webServiceReliability singleton resource.
This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceBufferingMBean instance.
Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=webServiceRequestBufferingQueue
This resource's webServiceRequestBufferingQueue singleton resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=webServiceResponseBufferingQueue
This resource's webServiceResponseBufferingQueue singleton resource.
This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
Contains a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
Contains a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServicePersistenceMBean instance.
Contains a weblogic.management.configuration.WebServicePersistenceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=webServiceLogicalStores
This resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=webServicePhysicalStores
This resource's webServicePhysicalStores collection resource.
This resource manages a collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.
Contains a list of weblogic.management.configuration.WebServiceLogicalStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=self
This resource.
This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
Contains a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.
Contains a list of weblogic.management.configuration.WebServicePhysicalStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=self
This resource.
This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
Contains a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServicePhysicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceReliabilityMBean instance.
Contains a weblogic.management.configuration.WebServiceReliabilityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceReliability rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/servers/{name}/webService/webServiceReliability rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ServerTemplateMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ServerTemplateMBean instances.
Contains a list of weblogic.management.configuration.ServerTemplateMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates rel=self
This resource.
This resource manages a weblogic.management.configuration.ServerTemplateMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerTemplateMBean instance.
Contains a weblogic.management.configuration.ServerTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/COM rel=COM
This resource's COM singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/IIOP rel=IIOP
This resource's IIOP singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/JTAMigratableTarget rel=JTAMigratableTarget
This resource's JTAMigratableTarget singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/SSL rel=SSL
This resource's SSL singleton resource.
rel=XMLEntityCache
This resource's XMLEntityCache reference to a weblogic.management.configuration.XMLEntityCacheMBean resource.
rel=XMLRegistry
This resource's XMLRegistry reference to a weblogic.management.configuration.XMLRegistryMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=canonical
This resource.
rel=cluster
This resource's cluster reference to a weblogic.management.configuration.ClusterMBean resource.
rel=coherenceClusterSystemResource
This resource's coherenceClusterSystemResource reference to a weblogic.management.configuration.CoherenceClusterSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/coherenceMemberConfig rel=coherenceMemberConfig
This resource's coherenceMemberConfig singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/dataSource rel=dataSource
This resource's dataSource singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/defaultFileStore rel=defaultFileStore
This resource's defaultFileStore singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/executeQueues rel=executeQueues
This resource's executeQueues collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/federationServices rel=federationServices
This resource's federationServices singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/log rel=log
This resource's log singleton resource.
rel=machine
This resource's machine reference to a weblogic.management.configuration.MachineMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/networkAccessPoints rel=networkAccessPoints
This resource's networkAccessPoints collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/overloadProtection rel=overloadProtection
This resource's overloadProtection singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates rel=parent
The parent resource of this resource.
rel=reliableDeliveryPolicy
This resource's reliableDeliveryPolicy reference to a weblogic.management.configuration.WSReliableDeliveryPolicyMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug rel=serverDebug
This resource's serverDebug singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig rel=serverDiagnosticConfig
This resource's serverDiagnosticConfig singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverStart rel=serverStart
This resource's serverStart singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/singleSignOnServices rel=singleSignOnServices
This resource's singleSignOnServices singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/transactionLogJDBCStore rel=transactionLogJDBCStore
This resource's transactionLogJDBCStore singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webServer rel=webServer
This resource's webServer singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService rel=webService
This resource's webService singleton resource.
This resource manages a weblogic.management.configuration.CoherenceMemberConfigMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.CoherenceMemberConfigMBean instance.
Contains a weblogic.management.configuration.CoherenceMemberConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/coherenceMemberConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/coherenceMemberConfig rel=self
This resource.
This resource manages a weblogic.management.configuration.COMMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.COMMBean instance.
Contains a weblogic.management.configuration.COMMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/COM rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/COM rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/configurationProperties rel=self
This resource.
This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/configurationProperties/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.DataSourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DataSourceMBean instance.
Contains a weblogic.management.configuration.DataSourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/dataSource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/dataSource/dataSourceLogFile rel=dataSourceLogFile
This resource's dataSourceLogFile singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/dataSource rel=self
This resource.
This resource manages a weblogic.management.configuration.DataSourceLogFileMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DataSourceLogFileMBean instance.
Contains a weblogic.management.configuration.DataSourceLogFileMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/dataSource/dataSourceLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/dataSource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/dataSource/dataSourceLogFile rel=self
This resource.
This resource manages a weblogic.management.configuration.DefaultFileStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DefaultFileStoreMBean instance.
Contains a weblogic.management.configuration.DefaultFileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/defaultFileStore rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/defaultFileStore rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ExecuteQueueMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ExecuteQueueMBean instances.
Contains a list of weblogic.management.configuration.ExecuteQueueMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/executeQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/executeQueues rel=self
This resource.
This resource manages a weblogic.management.configuration.ExecuteQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ExecuteQueueMBean instance.
Contains a weblogic.management.configuration.ExecuteQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/executeQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/executeQueues rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/executeQueues/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.FederationServicesMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.FederationServicesMBean instance.
Contains a weblogic.management.configuration.FederationServicesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/federationServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/federationServices rel=self
This resource.
This resource manages a weblogic.management.configuration.IIOPMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.IIOPMBean instance.
Contains a weblogic.management.configuration.IIOPMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/IIOP rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/IIOP rel=self
This resource.
This resource manages a weblogic.management.configuration.JTAMigratableTargetMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JTAMigratableTargetMBean instance.
Contains a weblogic.management.configuration.JTAMigratableTargetMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/JTAMigratableTarget rel=canonical
This resource.
rel=cluster
This resource's cluster reference to a weblogic.management.configuration.ClusterMBean resource.
rel=hostingServer
This resource's hostingServer reference to a weblogic.management.configuration.ServerMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/JTAMigratableTarget rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
This resource manages a weblogic.management.configuration.LogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.LogMBean instance.
Contains a weblogic.management.configuration.LogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/log rel=canonical
This resource.
rel=domainLogBroadcastFilter
This resource's domainLogBroadcastFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
rel=logFileFilter
This resource's logFileFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/log rel=self
This resource.
rel=stdoutFilter
This resource's stdoutFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
This resource manages a collection of weblogic.management.configuration.NetworkAccessPointMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.NetworkAccessPointMBean instances.
Contains a list of weblogic.management.configuration.NetworkAccessPointMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/networkAccessPoints rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/networkAccessPoints rel=self
This resource.
This resource manages a weblogic.management.configuration.NetworkAccessPointMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.NetworkAccessPointMBean instance.
Contains a weblogic.management.configuration.NetworkAccessPointMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/networkAccessPoints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/networkAccessPoints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/networkAccessPoints/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.OverloadProtectionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.OverloadProtectionMBean instance.
Contains a weblogic.management.configuration.OverloadProtectionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/overloadProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/overloadProtection rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/overloadProtection/serverFailureTrigger rel=serverFailureTrigger
This resource's serverFailureTrigger singleton resource.
This resource manages a weblogic.management.configuration.ServerFailureTriggerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerFailureTriggerMBean instance.
Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/overloadProtection/serverFailureTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/overloadProtection/serverFailureTrigger rel=self
This resource.
This resource manages a weblogic.management.configuration.ServerDebugMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerDebugMBean instance.
Contains a weblogic.management.configuration.ServerDebugMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug/debugScopes rel=debugScopes
This resource's debugScopes collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug rel=self
This resource.
rel=server
This resource's server reference to a weblogic.management.configuration.ServerMBean resource.
This resource manages a collection of weblogic.management.configuration.DebugScopeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.DebugScopeMBean instances.
Contains a list of weblogic.management.configuration.DebugScopeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug/debugScopes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug/debugScopes rel=self
This resource.
This resource manages a weblogic.management.configuration.DebugScopeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.DebugScopeMBean instance.
Contains a weblogic.management.configuration.DebugScopeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug/debugScopes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug/debugScopes rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDebug/debugScopes/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFServerDiagnosticMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.
Contains a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=WLDFBuiltinSystemResourceDescriptorBean
This resource's WLDFBuiltinSystemResourceDescriptorBean singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=WLDFDataRetirementByAges
This resource's WLDFDataRetirementByAges collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement rel=action title=lookupWLDFDataRetirement
This resource's lookupWLDFDataRetirement action resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig rel=canonical
This resource.
rel=diagnosticJDBCResource
This resource's diagnosticJDBCResource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig rel=self
This resource.
The resource supports the following methods:
This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=watchNotification
This resource's watchNotification singleton resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
This resource's actions collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
This resource's watches collection resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFImageNotificationBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFLogActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScriptActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFWatchBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource's schedule singleton resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WLDFDataRetirementByAgeMBean instances.
Contains a list of weblogic.management.configuration.WLDFDataRetirementByAgeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.
Contains a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ServerStartMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ServerStartMBean instance.
Contains a weblogic.management.configuration.ServerStartMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverStart rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/serverStart rel=self
This resource.
This resource manages a weblogic.management.configuration.SingleSignOnServicesMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SingleSignOnServicesMBean instance.
Contains a weblogic.management.configuration.SingleSignOnServicesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/singleSignOnServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/singleSignOnServices rel=self
This resource.
This resource manages a weblogic.management.configuration.SSLMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SSLMBean instance.
Contains a weblogic.management.configuration.SSLMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/SSL rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/SSL rel=self
This resource.
This resource manages a weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.
Contains a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/transactionLogJDBCStore rel=canonical
This resource.
rel=dataSource
This resource's dataSource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/transactionLogJDBCStore rel=self
This resource.
This resource manages a weblogic.management.configuration.WebServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerMBean instance.
Contains a weblogic.management.configuration.WebServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webServer rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
This resource manages a weblogic.management.configuration.WebServerLogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerLogMBean instance.
Contains a weblogic.management.configuration.WebServerLogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webServer/webServerLog rel=self
This resource.
This resource manages a weblogic.management.configuration.WebServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceMBean instance.
Contains a weblogic.management.configuration.WebServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering rel=webServiceBuffering
This resource's webServiceBuffering singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence rel=webServicePersistence
This resource's webServicePersistence singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceReliability rel=webServiceReliability
This resource's webServiceReliability singleton resource.
This resource manages a weblogic.management.configuration.WebServiceBufferingMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceBufferingMBean instance.
Contains a weblogic.management.configuration.WebServiceBufferingMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=webServiceRequestBufferingQueue
This resource's webServiceRequestBufferingQueue singleton resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=webServiceResponseBufferingQueue
This resource's webServiceResponseBufferingQueue singleton resource.
This resource manages a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
Contains a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
Contains a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServicePersistenceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServicePersistenceMBean instance.
Contains a weblogic.management.configuration.WebServicePersistenceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=webServiceLogicalStores
This resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=webServicePhysicalStores
This resource's webServicePhysicalStores collection resource.
This resource manages a collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebServiceLogicalStoreMBean instances.
Contains a list of weblogic.management.configuration.WebServiceLogicalStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
Contains a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebServicePhysicalStoreMBean instances.
Contains a list of weblogic.management.configuration.WebServicePhysicalStoreMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
Contains a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebServiceReliabilityMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServiceReliabilityMBean instance.
Contains a weblogic.management.configuration.WebServiceReliabilityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceReliability rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/serverTemplates/{name}/webService/webServiceReliability rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ShutdownClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ShutdownClassMBean instances.
Contains a list of weblogic.management.configuration.ShutdownClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/shutdownClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/shutdownClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.ShutdownClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ShutdownClassMBean instance.
Contains a weblogic.management.configuration.ShutdownClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/shutdownClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/shutdownClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/shutdownClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SingletonServiceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SingletonServiceMBean instances.
Contains a list of weblogic.management.configuration.SingletonServiceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/singletonServices rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/singletonServices rel=self
This resource.
This resource manages a weblogic.management.configuration.SingletonServiceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SingletonServiceMBean instance.
Contains a weblogic.management.configuration.SingletonServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/singletonServices/{name} rel=canonical
This resource.
rel=cluster
This resource's cluster reference to a weblogic.management.configuration.ClusterMBean resource.
rel=hostingServer
This resource's hostingServer reference to a weblogic.management.configuration.ServerMBean resource.
uri=/management/weblogic/{version}/domainConfig/singletonServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/singletonServices/{name} rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
This resource manages a weblogic.management.configuration.SNMPAgentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPAgentMBean instance.
Contains a weblogic.management.configuration.SNMPAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPAttributeChanges rel=SNMPAttributeChanges
This resource's SNMPAttributeChanges collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPCounterMonitors rel=SNMPCounterMonitors
This resource's SNMPCounterMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPGaugeMonitors rel=SNMPGaugeMonitors
This resource's SNMPGaugeMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPLogFilters rel=SNMPLogFilters
This resource's SNMPLogFilters collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPProxies rel=SNMPProxies
This resource's SNMPProxies collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPStringMonitors rel=SNMPStringMonitors
This resource's SNMPStringMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPTrapDestinations rel=SNMPTrapDestinations
This resource's SNMPTrapDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.
Contains a list of weblogic.management.configuration.SNMPAttributeChangeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPAttributeChanges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPAttributeChanges rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPAttributeChangeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPAttributeChangeMBean instance.
Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPAttributeChanges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPAttributeChanges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPAttributeChanges/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.
Contains a list of weblogic.management.configuration.SNMPCounterMonitorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPCounterMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPCounterMonitors rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPCounterMonitorMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPCounterMonitorMBean instance.
Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPCounterMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPCounterMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPCounterMonitors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.
Contains a list of weblogic.management.configuration.SNMPGaugeMonitorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPGaugeMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPGaugeMonitors rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPGaugeMonitorMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.
Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPGaugeMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPGaugeMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPGaugeMonitors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPLogFilterMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPLogFilterMBean instances.
Contains a list of weblogic.management.configuration.SNMPLogFilterMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPLogFilters rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPLogFilters rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPLogFilterMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPLogFilterMBean instance.
Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPLogFilters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPLogFilters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPLogFilters/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPProxyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPProxyMBean instances.
Contains a list of weblogic.management.configuration.SNMPProxyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPProxies rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPProxies rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPProxyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPProxyMBean instance.
Contains a weblogic.management.configuration.SNMPProxyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPProxies/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPProxies rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPProxies/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.
Contains a list of weblogic.management.configuration.SNMPStringMonitorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPStringMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPStringMonitors rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPStringMonitorMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPStringMonitorMBean instance.
Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPStringMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPStringMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPStringMonitors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.
Contains a list of weblogic.management.configuration.SNMPTrapDestinationMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPTrapDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPTrapDestinations rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPTrapDestinationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPTrapDestinationMBean instance.
Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPTrapDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPTrapDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgent/SNMPTrapDestinations/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPAgentDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPAgentDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SNMPAgentDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPAgentDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPAgentDeploymentMBean instance.
Contains a weblogic.management.configuration.SNMPAgentDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=SNMPAttributeChanges
This resource's SNMPAttributeChanges collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=SNMPCounterMonitors
This resource's SNMPCounterMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=SNMPGaugeMonitors
This resource's SNMPGaugeMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPLogFilters rel=SNMPLogFilters
This resource's SNMPLogFilters collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPProxies rel=SNMPProxies
This resource's SNMPProxies collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=SNMPStringMonitors
This resource's SNMPStringMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=SNMPTrapDestinations
This resource's SNMPTrapDestinations collection resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPAttributeChangeMBean instances.
Contains a list of weblogic.management.configuration.SNMPAttributeChangeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPAttributeChangeMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPAttributeChangeMBean instance.
Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPAttributeChanges/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPCounterMonitorMBean instances.
Contains a list of weblogic.management.configuration.SNMPCounterMonitorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPCounterMonitorMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPCounterMonitorMBean instance.
Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPCounterMonitors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPGaugeMonitorMBean instances.
Contains a list of weblogic.management.configuration.SNMPGaugeMonitorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPGaugeMonitorMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.
Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPGaugeMonitors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPLogFilterMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPLogFilterMBean instances.
Contains a list of weblogic.management.configuration.SNMPLogFilterMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPLogFilters rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPLogFilters rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPLogFilterMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPLogFilterMBean instance.
Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPLogFilters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPLogFilters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPLogFilters/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPProxyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPProxyMBean instances.
Contains a list of weblogic.management.configuration.SNMPProxyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPProxies rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPProxies rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPProxyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPProxyMBean instance.
Contains a weblogic.management.configuration.SNMPProxyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPProxies/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPProxies rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPProxies/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPStringMonitorMBean instances.
Contains a list of weblogic.management.configuration.SNMPStringMonitorMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPStringMonitorMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPStringMonitorMBean instance.
Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPStringMonitors/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SNMPTrapDestinationMBean instances.
Contains a list of weblogic.management.configuration.SNMPTrapDestinationMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=self
This resource.
This resource manages a weblogic.management.configuration.SNMPTrapDestinationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SNMPTrapDestinationMBean instance.
Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/SNMPAgentDeployments/{name}/SNMPTrapDestinations/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.StartupClassMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.StartupClassMBean instances.
Contains a list of weblogic.management.configuration.StartupClassMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/startupClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/startupClasses rel=self
This resource.
This resource manages a weblogic.management.configuration.StartupClassMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.StartupClassMBean instance.
Contains a weblogic.management.configuration.StartupClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/startupClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/startupClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/startupClasses/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SystemComponentConfigurationMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SystemComponentConfigurationMBean instances.
Contains a list of weblogic.management.configuration.SystemComponentConfigurationMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/systemComponentConfigurations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/systemComponentConfigurations rel=self
This resource.
This resource manages a weblogic.management.configuration.SystemComponentConfigurationMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SystemComponentConfigurationMBean instance.
Contains a weblogic.management.configuration.SystemComponentConfigurationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/systemComponentConfigurations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/systemComponentConfigurations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/systemComponentConfigurations/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.SystemComponentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SystemComponentMBean instances.
Contains a list of weblogic.management.configuration.SystemComponentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/systemComponents rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/systemComponents rel=self
This resource.
This resource manages a weblogic.management.configuration.SystemComponentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SystemComponentMBean instance.
Contains a weblogic.management.configuration.SystemComponentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/systemComponents/{name} rel=canonical
This resource.
rel=machine
This resource's machine reference to a weblogic.management.configuration.MachineMBean resource.
uri=/management/weblogic/{version}/domainConfig/systemComponents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/systemComponents/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/systemComponents/{name}/systemComponentStart rel=systemComponentStart
This resource's systemComponentStart singleton resource.
This resource manages a weblogic.management.configuration.SystemComponentStartMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SystemComponentStartMBean instance.
Contains a weblogic.management.configuration.SystemComponentStartMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/systemComponents/{name}/systemComponentStart rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/systemComponents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/systemComponents/{name}/systemComponentStart rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.VirtualHostMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.VirtualHostMBean instances.
Contains a list of weblogic.management.configuration.VirtualHostMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/virtualHosts rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/virtualHosts rel=self
This resource.
This resource manages a weblogic.management.configuration.VirtualHostMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.VirtualHostMBean instance.
Contains a weblogic.management.configuration.VirtualHostMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/virtualHosts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualHosts rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/virtualHosts/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualHosts/{name}/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
This resource manages a weblogic.management.configuration.WebServerLogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerLogMBean instance.
Contains a weblogic.management.configuration.WebServerLogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/virtualHosts/{name}/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualHosts/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/virtualHosts/{name}/webServerLog rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.VirtualTargetMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.VirtualTargetMBean instances.
Contains a list of weblogic.management.configuration.VirtualTargetMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/virtualTargets rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets rel=self
This resource.
This resource manages a weblogic.management.configuration.VirtualTargetMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.VirtualTargetMBean instance.
Contains a weblogic.management.configuration.VirtualTargetMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name}/webServer rel=webServer
This resource's webServer singleton resource.
This resource manages a weblogic.management.configuration.WebServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerMBean instance.
Contains a weblogic.management.configuration.WebServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name}/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name}/webServer rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name}/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
This resource manages a weblogic.management.configuration.WebServerLogMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebServerLogMBean instance.
Contains a weblogic.management.configuration.WebServerLogMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name}/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name}/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/virtualTargets/{name}/webServer/webServerLog rel=self
This resource.
This resource manages a weblogic.management.configuration.WebAppContainerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebAppContainerMBean instance.
Contains a weblogic.management.configuration.WebAppContainerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webAppContainer rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webAppContainer/gzipCompression rel=gzipCompression
This resource's gzipCompression singleton resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webAppContainer rel=self
This resource.
This resource manages a weblogic.management.configuration.GzipCompressionMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.GzipCompressionMBean instance.
Contains a weblogic.management.configuration.GzipCompressionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webAppContainer/gzipCompression rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webAppContainer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webAppContainer/gzipCompression rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WebserviceSecurityMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebserviceSecurityMBean instances.
Contains a list of weblogic.management.configuration.WebserviceSecurityMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities rel=self
This resource.
This resource manages a weblogic.management.configuration.WebserviceSecurityMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebserviceSecurityMBean instance.
Contains a weblogic.management.configuration.WebserviceSecurityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders rel=webserviceCredentialProviders
This resource's webserviceCredentialProviders collection resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens rel=webserviceSecurityTokens
This resource's webserviceSecurityTokens collection resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTimestamp rel=webserviceTimestamp
This resource's webserviceTimestamp singleton resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers rel=webserviceTokenHandlers
This resource's webserviceTokenHandlers collection resource.
This resource manages a collection of weblogic.management.configuration.WebserviceCredentialProviderMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebserviceCredentialProviderMBean instances.
Contains a list of weblogic.management.configuration.WebserviceCredentialProviderMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders rel=self
This resource.
This resource manages a weblogic.management.configuration.WebserviceCredentialProviderMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebserviceCredentialProviderMBean instance.
Contains a weblogic.management.configuration.WebserviceCredentialProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WebserviceSecurityTokenMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebserviceSecurityTokenMBean instances.
Contains a list of weblogic.management.configuration.WebserviceSecurityTokenMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens rel=self
This resource.
This resource manages a weblogic.management.configuration.WebserviceSecurityTokenMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebserviceSecurityTokenMBean instance.
Contains a weblogic.management.configuration.WebserviceSecurityTokenMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebserviceTimestampMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebserviceTimestampMBean instance.
Contains a weblogic.management.configuration.WebserviceTimestampMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTimestamp rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTimestamp rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WebserviceTokenHandlerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WebserviceTokenHandlerMBean instances.
Contains a list of weblogic.management.configuration.WebserviceTokenHandlerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers rel=self
This resource.
This resource manages a weblogic.management.configuration.WebserviceTokenHandlerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebserviceTokenHandlerMBean instance.
Contains a weblogic.management.configuration.WebserviceTokenHandlerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.ConfigurationPropertyMBean instances.
Contains a list of weblogic.management.configuration.ConfigurationPropertyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.ConfigurationPropertyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.configuration.WebserviceTestpageMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WebserviceTestpageMBean instance.
Contains a weblogic.management.configuration.WebserviceTestpageMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/webserviceTestpage rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/webserviceTestpage rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WLDFSystemResourceMBean instances.
Contains a list of weblogic.management.configuration.WLDFSystemResourceMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources rel=self
This resource.
This resource manages a weblogic.management.configuration.WLDFSystemResourceMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources rel=parent
The parent resource of this resource.
rel=resource
This resource's resource reference to a weblogic.descriptor.DescriptorBean resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a collection of weblogic.management.configuration.SubDeploymentMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.SubDeploymentMBean instances.
Contains a list of weblogic.management.configuration.SubDeploymentMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=self
This resource.
This resource manages a weblogic.management.configuration.SubDeploymentMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.SubDeploymentMBean instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFResourceBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFResourceBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFResourceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=watchNotification
This resource's watchNotification singleton resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester rel=self
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=self
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=self
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=watches
This resource's watches collection resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=self
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=properties
This resource's properties collection resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFPropertyBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFPropertyBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFImageNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFImageNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFLogActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFLogActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=parent
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFScriptActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFScriptActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
The resource supports the following methods:
Get this collection of weblogic.diagnostics.descriptor.WLDFWatchBean instances.
Contains a list of weblogic.diagnostics.descriptor.WLDFWatchBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFWatchBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=schedule
This resource's schedule singleton resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=self
This resource.
This resource manages a weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
The resource supports the following methods:
Get this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Contains a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.WSReliableDeliveryPolicyMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WSReliableDeliveryPolicyMBean instances.
Contains a list of weblogic.management.configuration.WSReliableDeliveryPolicyMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WSReliableDeliveryPolicies rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WSReliableDeliveryPolicies rel=self
This resource.
This resource manages a weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.
Contains a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity.
This method can return the following links:
rel=JMSServer
This resource's JMSServer reference to a weblogic.management.configuration.JMSServerMBean resource.
uri=/management/weblogic/{version}/domainConfig/WSReliableDeliveryPolicies/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WSReliableDeliveryPolicies rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WSReliableDeliveryPolicies/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WTCServerMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WTCServerMBean instances.
Contains a list of weblogic.management.configuration.WTCServerMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCServerMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCServerMBean instance.
Contains a weblogic.management.configuration.WTCServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCExports rel=WTCExports
This resource's WTCExports collection resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCImports rel=WTCImports
This resource's WTCImports collection resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCLocalTuxDoms rel=WTCLocalTuxDoms
This resource's WTCLocalTuxDoms collection resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCPasswords rel=WTCPasswords
This resource's WTCPasswords collection resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCRemoteTuxDoms rel=WTCRemoteTuxDoms
This resource's WTCRemoteTuxDoms collection resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCResources rel=WTCResources
This resource's WTCResources singleton resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeGlobal rel=WTCtBridgeGlobal
This resource's WTCtBridgeGlobal singleton resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeRedirects rel=WTCtBridgeRedirects
This resource's WTCtBridgeRedirects collection resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WTCExportMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WTCExportMBean instances.
Contains a list of weblogic.management.configuration.WTCExportMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCExports rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCExports rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCExportMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCExportMBean instance.
Contains a weblogic.management.configuration.WTCExportMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCExports/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCExports rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCExports/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WTCImportMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WTCImportMBean instances.
Contains a list of weblogic.management.configuration.WTCImportMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCImports rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCImports rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCImportMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCImportMBean instance.
Contains a weblogic.management.configuration.WTCImportMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCImports/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCImports rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCImports/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WTCLocalTuxDomMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WTCLocalTuxDomMBean instances.
Contains a list of weblogic.management.configuration.WTCLocalTuxDomMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCLocalTuxDoms rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCLocalTuxDoms rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCLocalTuxDomMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCLocalTuxDomMBean instance.
Contains a weblogic.management.configuration.WTCLocalTuxDomMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCLocalTuxDoms/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCLocalTuxDoms rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCLocalTuxDoms/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WTCPasswordMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WTCPasswordMBean instances.
Contains a list of weblogic.management.configuration.WTCPasswordMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCPasswords rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCPasswords rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCPasswordMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCPasswordMBean instance.
Contains a weblogic.management.configuration.WTCPasswordMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCPasswords/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCPasswords rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCPasswords/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WTCRemoteTuxDomMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WTCRemoteTuxDomMBean instances.
Contains a list of weblogic.management.configuration.WTCRemoteTuxDomMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCRemoteTuxDoms rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCRemoteTuxDoms rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCRemoteTuxDomMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCRemoteTuxDomMBean instance.
Contains a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCRemoteTuxDoms/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCRemoteTuxDoms rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCRemoteTuxDoms/{name} rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCResourcesMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCResourcesMBean instance.
Contains a weblogic.management.configuration.WTCResourcesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCResources rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCResources rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCtBridgeGlobalMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCtBridgeGlobalMBean instance.
Contains a weblogic.management.configuration.WTCtBridgeGlobalMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeGlobal rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeGlobal rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.WTCtBridgeRedirectMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.WTCtBridgeRedirectMBean instances.
Contains a list of weblogic.management.configuration.WTCtBridgeRedirectMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeRedirects rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeRedirects rel=self
This resource.
This resource manages a weblogic.management.configuration.WTCtBridgeRedirectMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.WTCtBridgeRedirectMBean instance.
Contains a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeRedirects/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeRedirects rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/WTCServers/{name}/WTCtBridgeRedirects/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.XMLEntityCacheMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.XMLEntityCacheMBean instances.
Contains a list of weblogic.management.configuration.XMLEntityCacheMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLEntityCaches rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLEntityCaches rel=self
This resource.
This resource manages a weblogic.management.configuration.XMLEntityCacheMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.XMLEntityCacheMBean instance.
Contains a weblogic.management.configuration.XMLEntityCacheMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLEntityCaches/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/XMLEntityCaches rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLEntityCaches/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.XMLRegistryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.XMLRegistryMBean instances.
Contains a list of weblogic.management.configuration.XMLRegistryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLRegistries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries rel=self
This resource.
This resource manages a weblogic.management.configuration.XMLRegistryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.XMLRegistryMBean instance.
Contains a weblogic.management.configuration.XMLRegistryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=XMLEntitySpecRegistryEntries
This resource's XMLEntitySpecRegistryEntries collection resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=XMLParserSelectRegistryEntries
This resource's XMLParserSelectRegistryEntries collection resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instances.
Contains a list of weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=self
This resource.
This resource manages a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instance.
Contains a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLEntitySpecRegistryEntries/{name} rel=self
This resource.
This resource manages a collection of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instances.
Contains a list of weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=self
This resource.
This resource manages a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instance.
Contains a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainConfig/XMLRegistries/{name}/XMLParserSelectRegistryEntries/{name} rel=self
This resource.