This documentation describes the Oracle WebLogic Server RESTful edit resources that are used to view and modify the domain configuration.
For a complete listing of the WLS REST reference documents and descriptions of their use, see Administering Oracle WebLogic Server with RESTful Management Services.
This resource is used to access the different versions of the resources in this domain.
The latest version is 12.2.1.3.0. The other versions, which are deprecated, are 12.2.1.0.0, 12.2.1.1.0, 12.2.1.2.0.
For future releases, latest
always refers to the most recent release.
All new and non-deprecated MBean features are available in all versions. Any MBean features that were deprecated in a version will not be available in that version or later versions, but will still be available using earlier versions.
To always use the latest resources, use latest
in the URLs. Note that this might require updating a client when moving to a newer version of WebLogic Server. To fix the version so that an update is not required, use 12.2.1.3.0
in the URLs.
The resource supports the following methods:
Get 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.3.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.3.0" } ], "items": [ { "links": [ { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/12.2.1.0.0" } ], "version": "12.2.1.0.0", "isLatest": false, "lifecycle": "deprecated" }, { "links": [ { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/12.2.1.1.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/12.2.1.1.0" } ], "version": "12.2.1.1.0", "isLatest": false, "lifecycle": "deprecated" }, { "links": [ { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0" } ], "version": "12.2.1.2.0", "isLatest": false, "lifecycle": "deprecated" }, { "links": [ { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0" } ], "version": "12.2.1.3.0", "isLatest": true, "lifecycle": "active" } ] }
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.3.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.3.0
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0" }, { "rel": "edit", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/edit" }, { "rel": "domainConfig", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainConfig" }, { "rel": "domainRuntime", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainRuntime" }, { "rel": "serverRuntime", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverRuntime" }, { "rel": "serverConfig", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverConfig" }, { "rel": "currentUser", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/currentUser" } ], "version": "12.2.1.3.0", "isLatest": true, "lifecycle": "active" }
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 edit the 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}/edit/JDBCStoreCreateForm rel=JDBCStoreCreateForm
The create form resource for this resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResourceCreateForm rel=JDBCSystemResourceCreateForm
The create form resource for this resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinationCreateForm rel=JMSBridgeDestinationCreateForm
The create form resource for this resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModuleCreateForm rel=JMSInteropModuleCreateForm
The create form resource for this resource's JMSInteropModules collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules rel=JMSInteropModules
This resource's JMSInteropModules collection resource.
uri=/management/weblogic/{version}/edit/JMSServerCreateForm rel=JMSServerCreateForm
The create form resource for this resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResourceCreateForm rel=JMSSystemResourceCreateForm
The create form resource for this resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/JMX rel=JMX
This resource's JMX singleton resource.
uri=/management/weblogic/{version}/edit/JPA rel=JPA
This resource's JPA singleton resource.
uri=/management/weblogic/{version}/edit/JTA rel=JTA
This resource's JTA singleton resource.
uri=/management/weblogic/{version}/edit/SAFAgentCreateForm rel=SAFAgentCreateForm
The create form resource for this resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=SNMPAgent
This resource's SNMPAgent singleton resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeploymentCreateForm rel=SNMPAgentDeploymentCreateForm
The create form resource for this resource's SNMPAgentDeployments collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments rel=SNMPAgentDeployments
This resource's SNMPAgentDeployments collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResourceCreateForm rel=WLDFSystemResourceCreateForm
The create form resource for this resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicies rel=WSReliableDeliveryPolicies
This resource's WSReliableDeliveryPolicies collection resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicyCreateForm rel=WSReliableDeliveryPolicyCreateForm
The create form resource for this resource's WSReliableDeliveryPolicies collection resource.
uri=/management/weblogic/{version}/edit/WTCServerCreateForm rel=WTCServerCreateForm
The create form resource for this resource's WTCServers collection resource.
uri=/management/weblogic/{version}/edit/WTCServers rel=WTCServers
This resource's WTCServers collection resource.
uri=/management/weblogic/{version}/edit/XMLEntityCacheCreateForm rel=XMLEntityCacheCreateForm
The create form resource for this resource's XMLEntityCaches collection resource.
uri=/management/weblogic/{version}/edit/XMLEntityCaches rel=XMLEntityCaches
This resource's XMLEntityCaches collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistries rel=XMLRegistries
This resource's XMLRegistries collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistryCreateForm rel=XMLRegistryCreateForm
The create form resource for this resource's XMLRegistries collection resource.
uri=/management/weblogic/{version}/edit/arePartitionsPresent rel=action title=arePartitionsPresent
This resource's arePartitionsPresent action resource.
uri=/management/weblogic/{version}/edit/findConfigBeansWithTags rel=action title=findConfigBeansWithTags
This resource's findConfigBeansWithTags action resource.
uri=/management/weblogic/{version}/edit/findPartitionByID rel=action title=findPartitionByID
This resource's findPartitionByID action resource.
uri=/management/weblogic/{version}/edit/listTags rel=action title=listTags
This resource's listTags action resource.
uri=/management/weblogic/{version}/edit/lookupSystemResource rel=action title=lookupSystemResource
This resource's lookupSystemResource action resource.
uri=/management/weblogic/{version}/edit/lookupTarget rel=action title=lookupTarget
This resource's lookupTarget action resource.
uri=/management/weblogic/{version}/edit/adminConsole rel=adminConsole
This resource's adminConsole singleton resource.
uri=/management/weblogic/{version}/edit/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/edit/batchConfig rel=batchConfig
This resource's batchConfig singleton resource.
uri=/management/weblogic/{version}/edit rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/cdiContainer rel=cdiContainer
This resource's cdiContainer singleton resource.
uri=/management/weblogic/{version}/edit/changeManager rel=changeManager
This resource's changeManager resource.
uri=/management/weblogic/{version}/edit/clusterCreateForm rel=clusterCreateForm
The create form resource for this resource's clusters collection resource.
uri=/management/weblogic/{version}/edit/clusters rel=clusters
This resource's clusters collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResourceCreateForm rel=coherenceClusterSystemResourceCreateForm
The create form resource for this resource's coherenceClusterSystemResources collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources rel=coherenceClusterSystemResources
This resource's coherenceClusterSystemResources collection resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusterCreateForm rel=coherenceManagementClusterCreateForm
The create form resource for this resource's coherenceManagementClusters collection resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters rel=coherenceManagementClusters
This resource's coherenceManagementClusters collection resource.
uri=/management/weblogic/{version}/edit/coherenceServerCreateForm rel=coherenceServerCreateForm
The create form resource for this resource's coherenceServers collection resource.
uri=/management/weblogic/{version}/edit/coherenceServers rel=coherenceServers
This resource's coherenceServers collection resource.
uri=/management/weblogic/{version}/edit/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/configurationPropertyCreateForm rel=configurationPropertyCreateForm
The create form resource for this resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/customResourceCreateForm rel=customResourceCreateForm
The create form resource for this resource's customResources collection resource.
uri=/management/weblogic/{version}/edit/customResources rel=customResources
This resource's customResources collection resource.
uri=/management/weblogic/{version}/edit/debugPatches rel=debugPatches
This resource's debugPatches singleton resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration rel=deploymentConfiguration
This resource's deploymentConfiguration singleton resource.
uri=/management/weblogic/{version}/edit/embeddedLDAP rel=embeddedLDAP
This resource's embeddedLDAP singleton resource.
uri=/management/weblogic/{version}/edit/fileStoreCreateForm rel=fileStoreCreateForm
The create form resource for this resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviderCreateForm rel=foreignJNDIProviderCreateForm
The create form resource for this resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/interceptors rel=interceptors
This resource's interceptors singleton resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments rel=internalAppDeployments
This resource's internalAppDeployments collection resource.
uri=/management/weblogic/{version}/edit/internalLibraries rel=internalLibraries
This resource's internalLibraries collection resource.
uri=/management/weblogic/{version}/edit/joltConnectionPoolCreateForm rel=joltConnectionPoolCreateForm
The create form resource for this resource's joltConnectionPools collection resource.
uri=/management/weblogic/{version}/edit/joltConnectionPools rel=joltConnectionPools
This resource's joltConnectionPools collection resource.
uri=/management/weblogic/{version}/edit/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig rel=lifecycleManagerConfig
This resource's lifecycleManagerConfig singleton resource.
uri=/management/weblogic/{version}/edit/log rel=log
This resource's log singleton resource.
uri=/management/weblogic/{version}/edit/logFilterCreateForm rel=logFilterCreateForm
The create form resource for this resource's logFilters collection resource.
uri=/management/weblogic/{version}/edit/logFilters rel=logFilters
This resource's logFilters collection resource.
uri=/management/weblogic/{version}/edit/machineCreateForm rel=machineCreateForm
The create form resource for this resource's machines collection resource.
uri=/management/weblogic/{version}/edit/machines rel=machines
This resource's machines collection resource.
uri=/management/weblogic/{version}/edit/mailSessionCreateForm rel=mailSessionCreateForm
The create form resource for this resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceCreateForm rel=managedExecutorServiceCreateForm
The create form resource for this resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplateCreateForm rel=managedExecutorServiceTemplateCreateForm
The create form resource for this resource's managedExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplates rel=managedExecutorServiceTemplates
This resource's managedExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceCreateForm rel=managedScheduledExecutorServiceCreateForm
The create form resource for this resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplateCreateForm rel=managedScheduledExecutorServiceTemplateCreateForm
The create form resource for this resource's managedScheduledExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplates rel=managedScheduledExecutorServiceTemplates
This resource's managedScheduledExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryCreateForm rel=managedThreadFactoryCreateForm
The create form resource for this resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplateCreateForm rel=managedThreadFactoryTemplateCreateForm
The create form resource for this resource's managedThreadFactoryTemplates collection resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplates rel=managedThreadFactoryTemplates
This resource's managedThreadFactoryTemplates collection resource.
uri=/management/weblogic/{version}/edit/messagingBridgeCreateForm rel=messagingBridgeCreateForm
The create form resource for this resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/migratableTargetCreateForm rel=migratableTargetCreateForm
The create form resource for this resource's migratableTargets collection resource.
uri=/management/weblogic/{version}/edit/migratableTargets rel=migratableTargets
This resource's migratableTargets collection resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment rel=optionalFeatureDeployment
This resource's optionalFeatureDeployment singleton resource.
uri=/management/weblogic/{version}/edit/osgiFrameworkCreateForm rel=osgiFrameworkCreateForm
The create form resource for this resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitionCreateForm rel=partitionCreateForm
The create form resource for this resource's partitions collection resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagerCreateForm rel=partitionWorkManagerCreateForm
The create form resource for this resource's partitionWorkManagers collection resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagers rel=partitionWorkManagers
This resource's partitionWorkManagers collection resource.
uri=/management/weblogic/{version}/edit/partitions rel=partitions
This resource's partitions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupCreateForm rel=resourceGroupCreateForm
The create form resource for this resource's resourceGroups collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplateCreateForm rel=resourceGroupTemplateCreateForm
The create form resource for this resource's resourceGroupTemplates collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates rel=resourceGroupTemplates
This resource's resourceGroupTemplates collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups rel=resourceGroups
This resource's resourceGroups collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement rel=resourceManagement
This resource's resourceManagement singleton resource.
uri=/management/weblogic/{version}/edit/restfulManagementServices rel=restfulManagementServices
This resource's restfulManagementServices singleton resource.
uri=/management/weblogic/{version}/edit/search rel=search
This resource's search resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=securityConfiguration
This resource's securityConfiguration singleton resource.
uri=/management/weblogic/{version}/edit rel=self
This resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=selfTuning
This resource's selfTuning singleton resource.
uri=/management/weblogic/{version}/edit/serverCreateForm rel=serverCreateForm
The create form resource for this resource's servers collection resource.
uri=/management/weblogic/{version}/edit/serverTemplateCreateForm rel=serverTemplateCreateForm
The create form resource for this resource's serverTemplates collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates rel=serverTemplates
This resource's serverTemplates collection resource.
uri=/management/weblogic/{version}/edit/servers rel=servers
This resource's servers collection resource.
uri=/management/weblogic/{version}/edit/shutdownClassCreateForm rel=shutdownClassCreateForm
The create form resource for this resource's shutdownClasses collection resource.
uri=/management/weblogic/{version}/edit/shutdownClasses rel=shutdownClasses
This resource's shutdownClasses collection resource.
uri=/management/weblogic/{version}/edit/singletonServiceCreateForm rel=singletonServiceCreateForm
The create form resource for this resource's singletonServices collection resource.
uri=/management/weblogic/{version}/edit/singletonServices rel=singletonServices
This resource's singletonServices collection resource.
uri=/management/weblogic/{version}/edit/startupClassCreateForm rel=startupClassCreateForm
The create form resource for this resource's startupClasses collection resource.
uri=/management/weblogic/{version}/edit/startupClasses rel=startupClasses
This resource's startupClasses collection resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurationCreateForm rel=systemComponentConfigurationCreateForm
The create form resource for this resource's systemComponentConfigurations collection resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurations rel=systemComponentConfigurations
This resource's systemComponentConfigurations collection resource.
uri=/management/weblogic/{version}/edit/systemComponentCreateForm rel=systemComponentCreateForm
The create form resource for this resource's systemComponents collection resource.
uri=/management/weblogic/{version}/edit/systemComponents rel=systemComponents
This resource's systemComponents collection resource.
uri=/management/weblogic/{version}/edit/virtualHostCreateForm rel=virtualHostCreateForm
The create form resource for this resource's virtualHosts collection resource.
uri=/management/weblogic/{version}/edit/virtualHosts rel=virtualHosts
This resource's virtualHosts collection resource.
uri=/management/weblogic/{version}/edit/virtualTargetCreateForm rel=virtualTargetCreateForm
The create form resource for this resource's virtualTargets collection resource.
uri=/management/weblogic/{version}/edit/virtualTargets rel=virtualTargets
This resource's virtualTargets collection resource.
uri=/management/weblogic/{version}/edit/webAppContainer rel=webAppContainer
This resource's webAppContainer singleton resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities rel=webserviceSecurities
This resource's webserviceSecurities collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurityCreateForm rel=webserviceSecurityCreateForm
The create form resource for this resource's webserviceSecurities collection resource.
uri=/management/weblogic/{version}/edit/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/edit?fields=administrationProtocol,productionModeEnabled&links=self
Example Response
HTTP/1.1 200 OK Response Body: { "links": [{ "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit" }], "administrationProtocol": "t3s", "productionModeEnabled": false }
Update this weblogic.management.configuration.DomainMBean instance.
Must contain a weblogic.management.configuration.DomainMBean entity.
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}/edit/adminConsole rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/adminConsole rel=self
This resource.
Update this weblogic.management.configuration.AdminConsoleMBean instance.
Must contain a weblogic.management.configuration.AdminConsoleMBean entity.
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}/edit/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/appDeployments rel=self
This resource.
The resource supports the following methods:
This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.
If the source path is relative, it is resolved relative to InstallDir/app
if InstallDir is not null; otherwise, it is resolved relative to the domain root.
This example uses the POST method to synchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ name: 'fairShare', sourcePath: '/deployments/fairShare.war', targets: [ { identity: [ 'servers', 'AdminServer' ] }, { identity: [ 'clusters', 'Cluster-0' ] } ] }" \ -X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 201 Created Location: http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare" }], "operationType": 3, "state": "STATE_COMPLETED", "applicationName": "fairShare", "progress": "success", "completed": true }
This example uses the POST method to asynchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ name: 'fairShare', sourcePath: '/deployments/fairShare.war', targets: [ { identity: [ 'servers', 'AdminServer' ] }, { identity: [ 'clusters', 'Cluster-0' ] } ] }" \ -H "Prefer:respond-async" \ -X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 202 Accepted Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare" }], "operationType": 3, "state": "STATE_RUNNING", "applicationName": "fairShare", "progress": "processing", "completed": false }
Use the multi-part form to upload an application from the client to the server and then deploy it.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Use the multi-part form to deploy an application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This example uses the POST method to synchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:multipart/form-data \ -F "model={ name: 'myapp', targets: [ { identity: [ 'servers', 'AdminServer' ] } ] }" \ -F "sourcePath=@/deployments/MyApp/app/MyApp.ear" \ -X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 100 Continue HTTP/1.1 201 Created Location: http://localhost:7001/management/weblogic/latest/edit/appDeployments/myapp Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/myapp" }], "operationType": 3, "state": "STATE_COMPLETED", "applicationName": "myapp", "progress": "success", "completed": true }
This example uses the POST method to asynchronously create a new weblogic.management.configuration.AppDeploymentMBean instance in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:multipart/form-data \ -F "model={ name: 'myapp', targets: [ { identity: [ 'servers', 'AdminServer' ] } ] }" \ -F "sourcePath=@/deployments/MyApp/app/MyApp.ear" \ -H "Prefer:respond-async" \ -X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 100 Continue HTTP/1.1 202 Accepted Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/myapp Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/myapp" }], "operationType": 3, "state": "STATE_RUNNING", "applicationName": "myapp", "progress": "processing", "completed": false }
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Undeploy an application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This example uses the DELETE method to synchronously remove a weblogic.management.configuration.AppDeploymentMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X DELETE http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 200 OK Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare" }], "operationType": 5, "state": "STATE_COMPLETED", "applicationName": "fairShare", "progress": "success", "completed": true }
This example uses the DELETE method to asynchronously remove a weblogic.management.configuration.AppDeploymentMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H "Prefer:respond-async" \ -X DELETE http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 202 Accepted Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare" }], "operationType": 5, "state": "STATE_RUNNING", "applicationName": "fairShare", "progress": "processing", "completed": false }
Get this weblogic.management.configuration.AppDeploymentMBean instance.
Contains a weblogic.management.configuration.AppDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/update rel=update
This resource's update resource.
This example uses the GET method to view this weblogic.management.configuration.AppDeploymentMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare?links=none&fields=name,versionIdentifier,targets
Example Response
HTTP/1.1 200 OK Response Body: { "versionIdentifier": null, "name": "fairShare", "targets": [ {"identity": [ "servers", "AdminServer" ]}, {"identity": [ "clusters", "Cluster-0" ]} ] }
Update this weblogic.management.configuration.AppDeploymentMBean instance.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy this application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This example uses the POST method to synchronously invoke the redeploy action.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{}" \ -X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare/redeploy?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 200 OK Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare" }], "operationType": 4, "state": "STATE_COMPLETED", "applicationName": "fairShare", "progress": "success", "completed": true }
This example uses the POST method to asynchronously invoke the redeploy action.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{}" \ -H "Prefer:respond-async" \ -X POST http://localhost:7001/management/weblogic/latest/edit/appDeployments/fairShare/redeploy?links=job,abort&fields=completed,progress,error,state,operationType,applicationName
Example Response
HTTP/1.1 202 Accepted Location: http://localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare Response Body: { "links": [{ "rel": "job", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime/deploymentManager/deploymentProgressObjects/fairShare" }], "operationType": 4, "state": "STATE_RUNNING", "applicationName": "fairShare", "progress": "processing", "completed": false }
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeploymentCreateForm 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}/edit/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
Update this application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/batchConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/batchConfig rel=self
This resource.
Update this weblogic.management.configuration.BatchConfigMBean instance.
Must contain a weblogic.management.configuration.BatchConfigMBean entity.
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}/edit/cdiContainer rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/cdiContainer rel=self
This resource.
Update this weblogic.management.configuration.CdiContainerMBean instance.
Must contain a weblogic.management.configuration.CdiContainerMBean entity.
The changeManager resource returns information about edit sessions. Use this resource to explicitly manage an edit session:
Use the changeManager to start an edit session.
Use other resources to make any number of configuration changes, such as configuring data sources and deploying applications.
Use the changeManager to either cancel all the changes in the edit session or activate them.
This strategy batches all the changes together which is typically most useful in a production environment when a number of configuration changes need to be made together before they are ready to be exposed to clients.
With implicit edit sessions, instead of using the changeManager, just use other resources to change the configuration (for example, create a data source). Each REST call to change the configuration will start its own edit session, make the change, and then activate the change. This is useful for small tweaks to the configuration as typically performed in development environments.
The resource supports the following methods:
Get this weblogic.management.rest.bean.model.ChangeManager instance.
Contains a weblogic.management.rest.bean.model.ChangeManager entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/changeManager/activate rel=activate
uri=/management/weblogic/{version}/edit/changeManager/cancelEdit rel=cancelEdit
uri=/management/weblogic/{version}/edit/changeManager rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/changeManager/forceResolve rel=forceResolve
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/changeManager/safeResolve rel=safeResolve
uri=/management/weblogic/{version}/edit/changeManager rel=self
This resource.
uri=/management/weblogic/{version}/edit/changeManager/startEdit rel=startEdit
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
This resource manages the create forms for the clusters collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ClusterMBean entity populated with default values that can be customized then posted (using the POST method) to the clusters collection resource to create a new instance.
Contains a weblogic.management.configuration.ClusterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/clusterCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusterCreateForm 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}/edit/clusters rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusterCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters rel=self
This resource.
Add a new weblogic.management.configuration.ClusterMBean instance to this collection.
Must contain a weblogic.management.configuration.ClusterMBean entity.
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}/edit/clusters/{name}/JTACluster rel=JTACluster
This resource's JTACluster singleton resource.
uri=/management/weblogic/{version}/edit/clusters/{name} rel=canonical
This resource.
rel=coherenceClusterSystemResource
This resource's coherenceClusterSystemResource reference to a weblogic.management.configuration.CoherenceClusterSystemResourceMBean resource.
uri=/management/weblogic/{version}/edit/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}/edit/clusters/{name}/databaseLessLeasingBasis rel=databaseLessLeasingBasis
This resource's databaseLessLeasingBasis singleton resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/dynamicServers rel=dynamicServers
This resource's dynamicServers singleton resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection rel=overloadProtection
This resource's overloadProtection singleton resource.
uri=/management/weblogic/{version}/edit/clusters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name} rel=self
This resource.
Update this weblogic.management.configuration.ClusterMBean instance.
Must contain a weblogic.management.configuration.ClusterMBean entity.
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}/edit/clusters/{name}/coherenceTier rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/coherenceTier rel=self
This resource.
Update this weblogic.management.configuration.CoherenceTierMBean instance.
Must contain a weblogic.management.configuration.CoherenceTierMBean entity.
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}/edit/clusters/{name}/databaseLessLeasingBasis rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/databaseLessLeasingBasis rel=self
This resource.
Update this weblogic.management.configuration.DatabaseLessLeasingBasisMBean instance.
Must contain a weblogic.management.configuration.DatabaseLessLeasingBasisMBean entity.
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}/edit/clusters/{name}/dynamicServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/dynamicServers rel=self
This resource.
rel=serverTemplate
This resource's serverTemplate reference to a weblogic.management.configuration.ServerTemplateMBean resource.
Update this weblogic.management.configuration.DynamicServersMBean instance.
Must contain a weblogic.management.configuration.DynamicServersMBean entity.
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}/edit/clusters/{name}/JTACluster rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/JTACluster rel=self
This resource.
Update this weblogic.management.configuration.JTAClusterMBean instance.
Must contain a weblogic.management.configuration.JTAClusterMBean entity.
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}/edit/clusters/{name}/overloadProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection rel=self
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTrigger rel=serverFailureTrigger
This resource's serverFailureTrigger singleton resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTriggerCreateForm rel=serverFailureTriggerCreateForm
The create form resource for this resource's serverFailureTrigger optional singleton resource.
Update this weblogic.management.configuration.OverloadProtectionMBean instance.
Must contain a weblogic.management.configuration.OverloadProtectionMBean entity.
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}/edit/clusters/{name}/overloadProtection/serverFailureTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTriggerCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTrigger rel=self
This resource.
Update this weblogic.management.configuration.ServerFailureTriggerMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This resource manages the create forms for the serverFailureTrigger optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ServerFailureTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the serverFailureTrigger optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTriggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTriggerCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/clusters/{name}/overloadProtection/serverFailureTriggerCreateForm rel=self
This resource.
This resource manages the create forms for the coherenceClusterSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceClusterSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResourceCreateForm 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}/edit/coherenceClusterSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity.
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}/edit/coherenceClusterSystemResources/{name}/importCustomClusterConfigurationFile rel=action title=importCustomClusterConfigurationFile
This resource's importCustomClusterConfigurationFile action resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigCreateForm rel=coherenceCacheConfigCreateForm
The create form resource for this resource's coherenceCacheConfigs collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=coherenceCacheConfigs
This resource's coherenceCacheConfigs collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=coherenceClusterResource
This resource's coherenceClusterResource singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/coherenceClusterSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.CoherenceClusterSystemResourceMBean instance.
Must contain a weblogic.management.configuration.CoherenceClusterSystemResourceMBean entity.
This resource manages the create forms for the coherenceCacheConfigs collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CoherenceCacheConfigMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceCacheConfigs collection resource to create a new instance.
Contains a weblogic.management.configuration.CoherenceCacheConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigCreateForm rel=self
This 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}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=self
This resource.
Add a new weblogic.management.configuration.CoherenceCacheConfigMBean instance to this collection.
Must contain a weblogic.management.configuration.CoherenceCacheConfigMBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name}/importCacheConfigurationFile rel=action title=importCacheConfigurationFile
This resource's importCacheConfigurationFile action resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceCacheConfigs/{name} rel=self
This resource.
Update this weblogic.management.configuration.CoherenceCacheConfigMBean instance.
Must contain a weblogic.management.configuration.CoherenceCacheConfigMBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders rel=coherenceAddressProviders
This resource's coherenceAddressProviders singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=coherenceClusterParams
This resource's coherenceClusterParams singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceFederationParams rel=coherenceFederationParams
This resource's coherenceFederationParams singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceLoggingParams rel=coherenceLoggingParams
This resource's coherenceLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherencePersistenceParams rel=coherencePersistenceParams
This resource's coherencePersistenceParams singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=self
This resource.
Update this weblogic.coherence.descriptor.wl.WeblogicCoherenceBean instance.
Must contain a weblogic.coherence.descriptor.wl.WeblogicCoherenceBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviderCreateForm rel=coherenceAddressProviderCreateForm
The create form resource for this resource's coherenceAddressProviders collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders rel=coherenceAddressProviders
This resource's coherenceAddressProviders collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the coherenceAddressProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceAddressProviders collection resource to create a new instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviderCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders 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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean instance to this collection.
Must contain a weblogic.coherence.descriptor.wl.CoherenceAddressProviderBean entity.
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:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceAddressProviders/coherenceAddressProviders/{name}/coherenceSocketAddressCreateForm rel=coherenceSocketAddressCreateForm
The create form resource for this resource's coherenceSocketAddresses collection resource.
uri=/management/weblogic/{version}/edit/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 the create forms for the coherenceSocketAddresses collection resource.
The resource supports the following methods:
This resource returns a weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceSocketAddresses collection resource to create a new instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance to this collection.
Must contain a weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean entity.
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.
Update this weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceSocketAddressBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCacheCreateForm rel=coherenceCacheCreateForm
The create form resource for this resource's coherenceCaches collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches rel=coherenceCaches
This resource's coherenceCaches collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses rel=coherenceClusterWellKnownAddresses
This resource's coherenceClusterWellKnownAddresses singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter rel=coherenceIdentityAsserter
This resource's coherenceIdentityAsserter singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceKeystoreParams rel=coherenceKeystoreParams
This resource's coherenceKeystoreParams singleton resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServiceCreateForm rel=coherenceServiceCreateForm
The create form resource for this resource's coherenceServices collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices rel=coherenceServices
This resource's coherenceServices collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceClusterParamsBean entity.
This resource manages the create forms for the coherenceCaches collection resource.
The resource supports the following methods:
This resource returns a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceCaches collection resource to create a new instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCacheCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams 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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCacheCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.coherence.descriptor.wl.CoherenceCacheBean instance to this collection.
Must contain a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceCaches/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherenceCacheBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceCacheBean entity.
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:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddressCreateForm rel=coherenceClusterWellKnownAddressCreateForm
The create form resource for this resource's coherenceClusterWellKnownAddresses collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceClusterWellKnownAddresses/coherenceClusterWellKnownAddresses rel=coherenceClusterWellKnownAddresses
This resource's coherenceClusterWellKnownAddresses collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the coherenceClusterWellKnownAddresses collection resource.
The resource supports the following methods:
This resource returns a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceClusterWellKnownAddresses collection resource to create a new instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instance to this collection.
Must contain a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean entity.
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.
Update this weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceClusterWellKnownAddressBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParamCreateForm rel=coherenceInitParamCreateForm
The create form resource for this resource's coherenceInitParams collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParams rel=coherenceInitParams
This resource's coherenceInitParams collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherenceIdentityAsserterBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceIdentityAsserterBean entity.
This resource manages the create forms for the coherenceInitParams collection resource.
The resource supports the following methods:
This resource returns a weblogic.coherence.descriptor.wl.CoherenceInitParamBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceInitParams collection resource to create a new instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceInitParamBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
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.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceIdentityAsserter/coherenceInitParamCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance to this collection.
Must contain a weblogic.coherence.descriptor.wl.CoherenceInitParamBean entity.
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.
Update this weblogic.coherence.descriptor.wl.CoherenceInitParamBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceInitParamBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceKeystoreParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherenceKeystoreParamsBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceKeystoreParamsBean entity.
This resource manages the create forms for the coherenceServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceServices collection resource to create a new instance.
Contains a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServiceCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.coherence.descriptor.wl.CoherenceServiceBean instance to this collection.
Must contain a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceClusterParams/coherenceServices/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherenceServiceBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceServiceBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceFederationParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherenceFederationParamsBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceFederationParamsBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherenceLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherenceLoggingParamsBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherenceLoggingParamsBean entity.
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}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource/coherencePersistenceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/coherenceClusterResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.coherence.descriptor.wl.CoherencePersistenceParamsBean instance.
Must contain a weblogic.coherence.descriptor.wl.CoherencePersistenceParamsBean entity.
The resource supports the following methods:
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeploymentCreateForm 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}/edit/coherenceClusterSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{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}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/coherenceClusterSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the coherenceManagementClusters collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CoherenceManagementClusterMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceManagementClusters collection resource to create a new instance.
Contains a weblogic.management.configuration.CoherenceManagementClusterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceManagementClusterCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusterCreateForm rel=self
This 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}/edit/coherenceManagementClusters rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusterCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters rel=self
This resource.
Add a new weblogic.management.configuration.CoherenceManagementClusterMBean instance to this collection.
Must contain a weblogic.management.configuration.CoherenceManagementClusterMBean entity.
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}/edit/coherenceManagementClusters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviderCreateForm rel=coherenceManagementAddressProviderCreateForm
The create form resource for this resource's coherenceManagementAddressProviders collection resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=coherenceManagementAddressProviders
This resource's coherenceManagementAddressProviders collection resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name} rel=self
This resource.
Update this weblogic.management.configuration.CoherenceManagementClusterMBean instance.
Must contain a weblogic.management.configuration.CoherenceManagementClusterMBean entity.
This resource manages the create forms for the coherenceManagementAddressProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CoherenceManagementAddressProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceManagementAddressProviders collection resource to create a new instance.
Contains a weblogic.management.configuration.CoherenceManagementAddressProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviderCreateForm 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}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=self
This resource.
Add a new weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance to this collection.
Must contain a weblogic.management.configuration.CoherenceManagementAddressProviderMBean entity.
This resource manages a weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance.
The resource supports the following methods:
Delete this weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance.
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}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceManagementClusters/{name}/coherenceManagementAddressProviders/{name} rel=self
This resource.
Update this weblogic.management.configuration.CoherenceManagementAddressProviderMBean instance.
Must contain a weblogic.management.configuration.CoherenceManagementAddressProviderMBean entity.
This resource manages the create forms for the coherenceServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CoherenceServerMBean entity populated with default values that can be customized then posted (using the POST method) to the coherenceServers collection resource to create a new instance.
Contains a weblogic.management.configuration.CoherenceServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/coherenceServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceServerCreateForm rel=self
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}/edit/coherenceServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceServers rel=self
This resource.
Add a new weblogic.management.configuration.CoherenceServerMBean instance to this collection.
Must contain a weblogic.management.configuration.CoherenceServerMBean entity.
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}/edit/coherenceServers/{name} rel=canonical
This resource.
rel=coherenceClusterSystemResource
This resource's coherenceClusterSystemResource reference to a weblogic.management.configuration.CoherenceClusterSystemResourceMBean resource.
uri=/management/weblogic/{version}/edit/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}/edit/coherenceServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceServers/{name} rel=self
This resource.
Update this weblogic.management.configuration.CoherenceServerMBean instance.
Must contain a weblogic.management.configuration.CoherenceServerMBean entity.
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}/edit/coherenceServers/{name}/coherenceServerStart rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/coherenceServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/coherenceServers/{name}/coherenceServerStart rel=self
This resource.
Update this weblogic.management.configuration.CoherenceServerStartMBean instance.
Must contain a weblogic.management.configuration.CoherenceServerStartMBean entity.
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}/edit/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/configurationPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/configurationProperties rel=self
This resource.
Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
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}/edit/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/configurationProperties/{name} rel=self
This resource.
Update this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This resource manages the create forms for the configurationProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/configurationPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/configurationProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/configurationPropertyCreateForm rel=self
This resource.
This resource manages the create forms for the customResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CustomResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the customResources collection resource to create a new instance.
Contains a weblogic.management.configuration.CustomResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/customResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/customResourceCreateForm 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}/edit/customResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/customResources rel=self
This resource.
Add a new weblogic.management.configuration.CustomResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.CustomResourceMBean entity.
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}/edit/customResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/customResource rel=customResource
This resource's customResource singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/customResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.CustomResourceMBean instance.
Must contain a weblogic.management.configuration.CustomResourceMBean entity.
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}/edit/customResources/{name}/customResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/customResource rel=self
This resource.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/customResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeploymentCreateForm 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}/edit/customResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/customResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/customResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/customResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/customResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/customResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/debugPatches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/debugPatches rel=self
This resource.
Update this weblogic.management.configuration.DebugPatchesMBean instance.
Must contain a weblogic.management.configuration.DebugPatchesMBean entity.
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}/edit/deploymentConfiguration rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin rel=deploymentValidationPlugin
This resource's deploymentValidationPlugin singleton resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration rel=self
This resource.
Update this weblogic.management.configuration.DeploymentConfigurationMBean instance.
Must contain a weblogic.management.configuration.DeploymentConfigurationMBean entity.
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}/edit/deploymentConfiguration/deploymentValidationPlugin rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameterCreateForm rel=parameterCreateForm
The create form resource for this resource's parameters collection resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters rel=parameters
This resource's parameters collection resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin rel=self
This resource.
Update this weblogic.management.configuration.DeploymentValidationPluginMBean instance.
Must contain a weblogic.management.configuration.DeploymentValidationPluginMBean entity.
This resource manages the create forms for the parameters collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ParameterMBean entity populated with default values that can be customized then posted (using the POST method) to the parameters collection resource to create a new instance.
Contains a weblogic.management.configuration.ParameterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameterCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameterCreateForm 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}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameterCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters rel=self
This resource.
Add a new weblogic.management.configuration.ParameterMBean instance to this collection.
Must contain a weblogic.management.configuration.ParameterMBean entity.
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}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/deploymentConfiguration/deploymentValidationPlugin/parameters/{name} rel=self
This resource.
Update this weblogic.management.configuration.ParameterMBean instance.
Must contain a weblogic.management.configuration.ParameterMBean entity.
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}/edit/embeddedLDAP rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/embeddedLDAP rel=self
This resource.
Update this weblogic.management.configuration.EmbeddedLDAPMBean instance.
Must contain a weblogic.management.configuration.EmbeddedLDAPMBean entity.
This resource manages the create forms for the fileStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/fileStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/fileStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/fileStoreCreateForm 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}/edit/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/fileStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/fileStores rel=self
This resource.
Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
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}/edit/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/fileStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.FileStoreMBean instance.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
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 the create forms for the foreignJNDIProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/foreignJNDIProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviderCreateForm 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}/edit/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
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}/edit/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=foreignJNDILinkCreateForm
The create form resource for this resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This resource manages the create forms for the foreignJNDILinks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm 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}/edit/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinks rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
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}/edit/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
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}/edit/interceptors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptorCreateForm rel=interceptorCreateForm
The create form resource for this resource's interceptors collection resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptors rel=interceptors
This resource's interceptors collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/interceptors rel=self
This resource.
Update this weblogic.management.configuration.InterceptorsMBean instance.
Must contain a weblogic.management.configuration.InterceptorsMBean entity.
This resource manages the create forms for the interceptors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.InterceptorMBean entity populated with default values that can be customized then posted (using the POST method) to the interceptors collection resource to create a new instance.
Contains a weblogic.management.configuration.InterceptorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/interceptors/interceptorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/interceptors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptorCreateForm 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}/edit/interceptors/interceptors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/interceptors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptors rel=self
This resource.
Add a new weblogic.management.configuration.InterceptorMBean instance to this collection.
Must contain a weblogic.management.configuration.InterceptorMBean entity.
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}/edit/interceptors/interceptors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/interceptors/interceptors/{name} rel=self
This resource.
Update this weblogic.management.configuration.InterceptorMBean instance.
Must contain a weblogic.management.configuration.InterceptorMBean entity.
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}/edit/internalAppDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/internalAppDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/update rel=update
This resource's update resource.
Update this weblogic.management.configuration.AppDeploymentMBean instance.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy this application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeploymentCreateForm 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}/edit/internalAppDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/internalAppDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
Update this application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/internalLibraries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/internalLibraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.LibraryMBean instance.
Must contain a weblogic.management.configuration.LibraryMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeploymentCreateForm 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}/edit/internalLibraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/internalLibraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the JDBCStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JDBCStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCStoreCreateForm 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}/edit/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCStores rel=self
This resource.
Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
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}/edit/JDBCStores/{name} rel=canonical
This resource.
rel=dataSource
This resource's dataSource reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/edit/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.JDBCStoreMBean instance.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
This resource manages the create forms for the JDBCSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JDBCSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResourceCreateForm 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}/edit/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=self
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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
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}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeploymentCreateForm 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}/edit/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the JMSBridgeDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSBridgeDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinationCreateForm rel=self
This 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}/edit/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinations rel=self
This resource.
Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
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}/edit/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSBridgeDestinations/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This resource manages the create forms for the JMSInteropModules collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSInteropModuleMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSInteropModules collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSInteropModuleMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModuleCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModuleCreateForm 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}/edit/JMSInteropModules rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModuleCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules rel=self
This resource.
Add a new weblogic.management.configuration.JMSInteropModuleMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSInteropModuleMBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSInteropModules/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JMSInteropModuleMBean instance.
Must contain a weblogic.management.configuration.JMSInteropModuleMBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlingCreateForm rel=SAFErrorHandlingCreateForm
The create form resource for this resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinationCreateForm rel=SAFImportedDestinationCreateForm
The create form resource for this resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContextCreateForm rel=SAFRemoteContextCreateForm
The create form resource for this resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactoryCreateForm rel=connectionFactoryCreateForm
The create form resource for this resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeyCreateForm rel=destinationKeyCreateForm
The create form resource for this resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServerCreateForm rel=foreignServerCreateForm
The create form resource for this resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queueCreateForm rel=queueCreateForm
The create form resource for this resource's queues collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotaCreateForm rel=quotaCreateForm
The create form resource for this resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templateCreateForm rel=templateCreateForm
The create form resource for this resource's templates collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topicCreateForm rel=topicCreateForm
The create form resource for this resource's topics collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueueCreateForm rel=uniformDistributedQueueCreateForm
The create form resource for this resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopicCreateForm rel=uniformDistributedTopicCreateForm
The create form resource for this resource's uniformDistributedTopics collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
Update this weblogic.j2ee.descriptor.wl.JMSBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/clientParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/securityParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This resource manages the create forms for the connectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/connectionFactoryCreateForm rel=self
This resource.
This resource manages the create forms for the destinationKeys collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeyCreateForm rel=self
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}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/destinationKeys/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This resource manages the create forms for the foreignServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServerCreateForm 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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=JNDIPropertyCreateForm
The create form resource for this resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=foreignConnectionFactoryCreateForm
The create form resource for this resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=foreignDestinationCreateForm
The create form resource for this resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This resource manages the create forms for the foreignConnectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the foreignDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} 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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This resource manages the create forms for the JNDIProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=self
This resource.
This resource manages the create forms for the queues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queueCreateForm rel=self
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}/edit/JMSInteropModules/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.QueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the quotas collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotaCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotas rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotaCreateForm rel=self
This 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}/edit/JMSInteropModules/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotaCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotas rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/quotas/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This resource manages the create forms for the SAFErrorHandlings collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlingCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlingCreateForm 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}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlingCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFErrorHandlings/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This resource manages the create forms for the SAFImportedDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinationCreateForm 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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=SAFQueueCreateForm
The create form resource for this resource's SAFQueues collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=SAFTopicCreateForm
The create form resource for this resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFRemoteContexts collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContextCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContextCreateForm rel=self
This 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}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContextCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This resource manages the create forms for the templates collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templateCreateForm rel=self
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}/edit/JMSInteropModules/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=groupParamCreateForm
The create form resource for this resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
The resource supports the following methods:
This resource manages the create forms for the groupParams collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=self
This resource.
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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/groupParams rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/messageLoggingParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the topics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topicCreateForm rel=self
This 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}/edit/JMSInteropModules/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the uniformDistributedQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueueCreateForm rel=self
This 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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the uniformDistributedTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopicCreateForm rel=self
This 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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeploymentCreateForm 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}/edit/JMSInteropModules/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/JMSInteropModules/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSInteropModules/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the JMSServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSServerCreateForm 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}/edit/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSServers rel=self
This resource.
Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSServers/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSServerMBean instance.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSServers/{name}/JMSMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This resource manages the create forms for the JMSSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResourceCreateForm 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}/edit/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JMSSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=SAFErrorHandlingCreateForm
The create form resource for this resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=SAFImportedDestinationCreateForm
The create form resource for this resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=SAFRemoteContextCreateForm
The create form resource for this resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=connectionFactoryCreateForm
The create form resource for this resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=destinationKeyCreateForm
The create form resource for this resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=foreignServerCreateForm
The create form resource for this resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=queueCreateForm
The create form resource for this resource's queues collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=quotaCreateForm
The create form resource for this resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=templateCreateForm
The create form resource for this resource's templates collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=topicCreateForm
The create form resource for this resource's topics collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=uniformDistributedQueueCreateForm
The create form resource for this resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=uniformDistributedTopicCreateForm
The create form resource for this resource's uniformDistributedTopics collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
Update this weblogic.j2ee.descriptor.wl.JMSBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This resource manages the create forms for the connectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=self
This resource.
This resource manages the create forms for the destinationKeys collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=self
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}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This resource manages the create forms for the foreignServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm 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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=JNDIPropertyCreateForm
The create form resource for this resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=foreignConnectionFactoryCreateForm
The create form resource for this resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=foreignDestinationCreateForm
The create form resource for this resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This resource manages the create forms for the foreignConnectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the foreignDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} 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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This resource manages the create forms for the JNDIProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the queues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=self
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}/edit/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.QueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/queues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the quotas collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotas rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=self
This 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}/edit/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotas rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This resource manages the create forms for the SAFErrorHandlings collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm 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}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This resource manages the create forms for the SAFImportedDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm 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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=SAFQueueCreateForm
The create form resource for this resource's SAFQueues collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=SAFTopicCreateForm
The create form resource for this resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFRemoteContexts collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=self
This 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}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This resource manages the create forms for the templates collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=self
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}/edit/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=groupParamCreateForm
The create form resource for this resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
The resource supports the following methods:
This resource manages the create forms for the groupParams collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=self
This resource.
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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the topics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=self
This 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}/edit/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the uniformDistributedQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=self
This 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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the uniformDistributedTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=self
This 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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=self
This resource.
rel=templateBean
This resource's templateBean reference to a weblogic.j2ee.descriptor.wl.TemplateBean resource.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeploymentCreateForm 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}/edit/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/JMX rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JMX rel=self
This resource.
Update this weblogic.management.configuration.JMXMBean instance.
Must contain a weblogic.management.configuration.JMXMBean entity.
This resource manages the create forms for the joltConnectionPools collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JoltConnectionPoolMBean entity populated with default values that can be customized then posted (using the POST method) to the joltConnectionPools collection resource to create a new instance.
Contains a weblogic.management.configuration.JoltConnectionPoolMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/joltConnectionPoolCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/joltConnectionPools rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/joltConnectionPoolCreateForm 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}/edit/joltConnectionPools rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/joltConnectionPoolCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/joltConnectionPools rel=self
This resource.
Add a new weblogic.management.configuration.JoltConnectionPoolMBean instance to this collection.
Must contain a weblogic.management.configuration.JoltConnectionPoolMBean entity.
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}/edit/joltConnectionPools/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/joltConnectionPools rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/joltConnectionPools/{name} rel=self
This resource.
Update this weblogic.management.configuration.JoltConnectionPoolMBean instance.
Must contain a weblogic.management.configuration.JoltConnectionPoolMBean entity.
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}/edit/JPA rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JPA rel=self
This resource.
Update this weblogic.management.configuration.JPAMBean instance.
Must contain a weblogic.management.configuration.JPAMBean entity.
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}/edit/JTA rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/JTA rel=self
This resource.
Update this weblogic.management.configuration.JTAMBean instance.
Must contain a weblogic.management.configuration.JTAMBean entity.
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}/edit/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/libraries rel=self
This resource.
The resource supports the following methods:
This resource is used to deploy libraries that are already on the admininstration server.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.LibraryMBean entity.
To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.
Use the multi-part form to deploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
Upload a library from the client to the server then deploy it.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Undeploy a library.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.LibraryMBean instance.
Must contain a weblogic.management.configuration.LibraryMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeploymentCreateForm 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}/edit/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/lifecycleManagerConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPointCreateForm rel=configuredEndPointCreateForm
The create form resource for this resource's configuredEndPoints collection resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPoints rel=configuredEndPoints
This resource's configuredEndPoints collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig rel=self
This resource.
rel=target
This resource's target reference to a weblogic.management.configuration.TargetMBean resource.
Update this weblogic.management.configuration.LifecycleManagerConfigMBean instance.
Must contain a weblogic.management.configuration.LifecycleManagerConfigMBean entity.
This resource manages the create forms for the configuredEndPoints collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.LifecycleManagerEndPointMBean entity populated with default values that can be customized then posted (using the POST method) to the configuredEndPoints collection resource to create a new instance.
Contains a weblogic.management.configuration.LifecycleManagerEndPointMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPointCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPoints rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPointCreateForm rel=self
This 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}/edit/lifecycleManagerConfig/configuredEndPoints rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPointCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPoints rel=self
This resource.
Add a new weblogic.management.configuration.LifecycleManagerEndPointMBean instance to this collection.
Must contain a weblogic.management.configuration.LifecycleManagerEndPointMBean entity.
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}/edit/lifecycleManagerConfig/configuredEndPoints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPoints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/lifecycleManagerConfig/configuredEndPoints/{name} rel=self
This resource.
Update this weblogic.management.configuration.LifecycleManagerEndPointMBean instance.
Must contain a weblogic.management.configuration.LifecycleManagerEndPointMBean entity.
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}/edit/log rel=canonical
This resource.
rel=domainLogBroadcastFilter
This resource's domainLogBroadcastFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
rel=logFileFilter
This resource's logFileFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/log rel=self
This resource.
rel=stdoutFilter
This resource's stdoutFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
Update this weblogic.management.configuration.LogMBean instance.
Must contain a weblogic.management.configuration.LogMBean entity.
This resource manages the create forms for the logFilters collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.LogFilterMBean entity populated with default values that can be customized then posted (using the POST method) to the logFilters collection resource to create a new instance.
Contains a weblogic.management.configuration.LogFilterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/logFilterCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/logFilters rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/logFilterCreateForm rel=self
This 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}/edit/logFilters rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/logFilterCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/logFilters rel=self
This resource.
Add a new weblogic.management.configuration.LogFilterMBean instance to this collection.
Must contain a weblogic.management.configuration.LogFilterMBean entity.
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}/edit/logFilters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/logFilters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/logFilters/{name} rel=self
This resource.
Update this weblogic.management.configuration.LogFilterMBean instance.
Must contain a weblogic.management.configuration.LogFilterMBean entity.
The resource supports the following methods:
This resource manages the create forms for the machines collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MachineMBean entity populated with default values that can be customized then posted (using the POST method) to the machines collection resource to create a new instance.
Contains a weblogic.management.configuration.MachineMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/machineCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/machines rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/machineCreateForm rel=self
This resource.
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}/edit/machines rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/machineCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/machines rel=self
This resource.
Add a new weblogic.management.configuration.MachineMBean instance to this collection.
Must contain a weblogic.management.configuration.MachineMBean entity.
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}/edit/machines/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/machines/{name}/nodeManager rel=nodeManager
This resource's nodeManager singleton resource.
uri=/management/weblogic/{version}/edit/machines rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/machines/{name} rel=self
This resource.
Update this weblogic.management.configuration.MachineMBean instance.
Must contain a weblogic.management.configuration.MachineMBean entity.
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}/edit/machines/{name}/nodeManager rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/machines/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/machines/{name}/nodeManager rel=self
This resource.
Update this weblogic.management.configuration.NodeManagerMBean instance.
Must contain a weblogic.management.configuration.NodeManagerMBean entity.
This resource manages the create forms for the mailSessions collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/mailSessionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/mailSessions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/mailSessionCreateForm 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}/edit/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/mailSessionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/mailSessions rel=self
This resource.
Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
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}/edit/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/mailSessions/{name} rel=self
This resource.
Update this weblogic.management.configuration.MailSessionMBean instance.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
This resource manages the create forms for the managedExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/managedExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceCreateForm 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}/edit/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
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}/edit/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This resource manages the create forms for the managedExecutorServiceTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServiceTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplateCreateForm 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}/edit/managedExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
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}/edit/managedExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedExecutorServiceTemplates/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.
Must contain a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
This resource manages the create forms for the managedScheduledExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceCreateForm 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}/edit/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
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}/edit/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This resource manages the create forms for the managedScheduledExecutorServiceTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServiceTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplateCreateForm 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}/edit/managedScheduledExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
The resource supports the following methods:
Delete this weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
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}/edit/managedScheduledExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedScheduledExecutorServiceTemplates/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
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}/edit/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedThreadFactories rel=self
This resource.
Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
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}/edit/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedThreadFactories/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This resource manages the create forms for the managedThreadFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/managedThreadFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedThreadFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryCreateForm rel=self
This resource.
This resource manages the create forms for the managedThreadFactoryTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactoryTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplateCreateForm 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}/edit/managedThreadFactoryTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
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}/edit/managedThreadFactoryTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/managedThreadFactoryTemplates/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.
Must contain a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
This resource manages the create forms for the messagingBridges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/messagingBridgeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/messagingBridges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/messagingBridgeCreateForm 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}/edit/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/messagingBridgeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/messagingBridges rel=self
This resource.
Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
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}/edit/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.management.configuration.MessagingBridgeMBean instance.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
This resource manages the create forms for the migratableTargets collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MigratableTargetMBean entity populated with default values that can be customized then posted (using the POST method) to the migratableTargets collection resource to create a new instance.
Contains a weblogic.management.configuration.MigratableTargetMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/migratableTargetCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/migratableTargets rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/migratableTargetCreateForm rel=self
This 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}/edit/migratableTargets rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/migratableTargetCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/migratableTargets rel=self
This resource.
Add a new weblogic.management.configuration.MigratableTargetMBean instance to this collection.
Must contain a weblogic.management.configuration.MigratableTargetMBean entity.
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}/edit/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}/edit/migratableTargets rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/migratableTargets/{name} rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
Update this weblogic.management.configuration.MigratableTargetMBean instance.
Must contain a weblogic.management.configuration.MigratableTargetMBean entity.
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}/edit/optionalFeatureDeployment rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatureCreateForm rel=optionalFeatureCreateForm
The create form resource for this resource's optionalFeatures collection resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatures rel=optionalFeatures
This resource's optionalFeatures collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment rel=self
This resource.
Update this weblogic.management.configuration.OptionalFeatureDeploymentMBean instance.
Must contain a weblogic.management.configuration.OptionalFeatureDeploymentMBean entity.
This resource manages the create forms for the optionalFeatures collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.OptionalFeatureMBean entity populated with default values that can be customized then posted (using the POST method) to the optionalFeatures collection resource to create a new instance.
Contains a weblogic.management.configuration.OptionalFeatureMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatureCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatures rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatureCreateForm 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}/edit/optionalFeatureDeployment/optionalFeatures rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatureCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatures rel=self
This resource.
Add a new weblogic.management.configuration.OptionalFeatureMBean instance to this collection.
Must contain a weblogic.management.configuration.OptionalFeatureMBean entity.
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}/edit/optionalFeatureDeployment/optionalFeatures/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatures rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/optionalFeatureDeployment/optionalFeatures/{name} rel=self
This resource.
Update this weblogic.management.configuration.OptionalFeatureMBean instance.
Must contain a weblogic.management.configuration.OptionalFeatureMBean entity.
This resource manages the create forms for the osgiFrameworks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/osgiFrameworkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/osgiFrameworks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/osgiFrameworkCreateForm 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}/edit/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/osgiFrameworkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/osgiFrameworks rel=self
This resource.
Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
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}/edit/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/osgiFrameworks/{name} rel=self
This resource.
Update this weblogic.management.configuration.OsgiFrameworkMBean instance.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
This resource manages the create forms for the partitions collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.PartitionMBean entity populated with default values that can be customized then posted (using the POST method) to the partitions collection resource to create a new instance.
Contains a weblogic.management.configuration.PartitionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitionCreateForm 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}/edit/partitions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions rel=self
This resource.
Add a new weblogic.management.configuration.PartitionMBean instance to this collection.
Must contain a weblogic.management.configuration.PartitionMBean entity.
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}/edit/partitions/{name}/JDBCSystemResourceOverrideCreateForm rel=JDBCSystemResourceOverrideCreateForm
The create form resource for this resource's JDBCSystemResourceOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides rel=JDBCSystemResourceOverrides
This resource's JDBCSystemResourceOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrideCreateForm rel=JMSSystemResourceOverrideCreateForm
The create form resource for this resource's JMSSystemResourceOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides rel=JMSSystemResourceOverrides
This resource's JMSSystemResourceOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JTAPartition rel=JTAPartition
This resource's JTAPartition singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/findEffectiveServerNames rel=action title=findEffectiveServerNames
This resource's findEffectiveServerNames action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/lookupAvailableTarget rel=action title=lookupAvailableTarget
This resource's lookupAvailableTarget action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget rel=adminVirtualTarget
This resource's adminVirtualTarget singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigCreateForm rel=coherencePartitionCacheConfigCreateForm
The create form resource for this resource's coherencePartitionCacheConfigs collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs rel=coherencePartitionCacheConfigs
This resource's coherencePartitionCacheConfigs collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationPropertyCreateForm rel=configurationPropertyCreateForm
The create form resource for this resource's configurationProperties collection resource.
rel=dataSourceForJobScheduler
This resource's dataSourceForJobScheduler reference to a weblogic.management.configuration.JDBCSystemResourceMBean resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/dataSourcePartition rel=dataSourcePartition
This resource's dataSourcePartition singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrideCreateForm rel=foreignJNDIProviderOverrideCreateForm
The create form resource for this resource's foreignJNDIProviderOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides rel=foreignJNDIProviderOverrides
This resource's foreignJNDIProviderOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments rel=internalAppDeployments
This resource's internalAppDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries rel=internalLibraries
This resource's internalLibraries collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrideCreateForm rel=mailSessionOverrideCreateForm
The create form resource for this resource's mailSessionOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrides rel=mailSessionOverrides
This resource's mailSessionOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplateCreateForm rel=managedExecutorServiceTemplateCreateForm
The create form resource for this resource's managedExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplates rel=managedExecutorServiceTemplates
This resource's managedExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplateCreateForm rel=managedScheduledExecutorServiceTemplateCreateForm
The create form resource for this resource's managedScheduledExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates rel=managedScheduledExecutorServiceTemplates
This resource's managedScheduledExecutorServiceTemplates collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplateCreateForm rel=managedThreadFactoryTemplateCreateForm
The create form resource for this resource's managedThreadFactoryTemplates collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplates rel=managedThreadFactoryTemplates
This resource's managedThreadFactoryTemplates collection resource.
uri=/management/weblogic/{version}/edit/partitions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionLog rel=partitionLog
This resource's partitionLog singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManager rel=partitionWorkManager
This resource's partitionWorkManager singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManagerCreateForm rel=partitionWorkManagerCreateForm
The create form resource for this resource's partitionWorkManager optional 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}/edit/partitions/{name}/resourceGroupCreateForm rel=resourceGroupCreateForm
The create form resource for this resource's resourceGroups collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups rel=resourceGroups
This resource's resourceGroups collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=resourceManager
This resource's resourceManager singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManagerCreateForm rel=resourceManagerCreateForm
The create form resource for this resource's resourceManager optional singleton resource.
rel=resourceManagerRef
This resource's resourceManagerRef reference to a weblogic.management.configuration.ResourceManagerMBean resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=selfTuning
This resource's selfTuning singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/systemFileSystem rel=systemFileSystem
This resource's systemFileSystem singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/userFileSystem rel=userFileSystem
This resource's userFileSystem singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService rel=webService
This resource's webService singleton resource.
Update this weblogic.management.configuration.PartitionMBean instance.
Must contain a weblogic.management.configuration.PartitionMBean entity.
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}/edit/partitions/{name}/adminVirtualTarget rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget/webServer rel=webServer
This resource's webServer singleton resource.
Update this weblogic.management.configuration.AdminVirtualTargetMBean instance.
Must contain a weblogic.management.configuration.AdminVirtualTargetMBean entity.
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}/edit/partitions/{name}/adminVirtualTarget/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget/webServer rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
Update this weblogic.management.configuration.WebServerMBean instance.
Must contain a weblogic.management.configuration.WebServerMBean entity.
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}/edit/partitions/{name}/adminVirtualTarget/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/adminVirtualTarget/webServer/webServerLog rel=self
This resource.
Update this weblogic.management.configuration.WebServerLogMBean instance.
Must contain a weblogic.management.configuration.WebServerLogMBean entity.
This resource manages the create forms for the coherencePartitionCacheConfigs collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity populated with default values that can be customized then posted (using the POST method) to the coherencePartitionCacheConfigs collection resource to create a new instance.
Contains a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigCreateForm 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}/edit/partitions/{name}/coherencePartitionCacheConfigs rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs rel=self
This resource.
Add a new weblogic.management.configuration.CoherencePartitionCacheConfigMBean instance to this collection.
Must contain a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity.
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}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties rel=coherencePartitionCacheProperties
This resource's coherencePartitionCacheProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCachePropertyCreateForm rel=coherencePartitionCachePropertyCreateForm
The create form resource for this resource's coherencePartitionCacheProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name} rel=self
This resource.
Update this weblogic.management.configuration.CoherencePartitionCacheConfigMBean instance.
Must contain a weblogic.management.configuration.CoherencePartitionCacheConfigMBean entity.
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}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCachePropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.CoherencePartitionCachePropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.CoherencePartitionCachePropertyMBean entity.
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}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.CoherencePartitionCachePropertyMBean instance.
Must contain a weblogic.management.configuration.CoherencePartitionCachePropertyMBean entity.
This resource manages the create forms for the coherencePartitionCacheProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CoherencePartitionCachePropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the coherencePartitionCacheProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.CoherencePartitionCachePropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCachePropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name}/coherencePartitionCacheProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/coherencePartitionCacheConfigs/{name} 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}/edit/partitions/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationProperties rel=self
This resource.
Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
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}/edit/partitions/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationProperties/{name} rel=self
This resource.
Update this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This resource manages the create forms for the configurationProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/configurationPropertyCreateForm 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}/edit/partitions/{name}/dataSourcePartition rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/dataSourcePartition rel=self
This resource.
Update this weblogic.management.configuration.DataSourcePartitionMBean instance.
Must contain a weblogic.management.configuration.DataSourcePartitionMBean entity.
The resource supports the following methods:
This resource manages the create forms for the foreignJNDIProviderOverrides collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviderOverrides collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrideCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrideCreateForm rel=self
This resource.
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}/edit/partitions/{name}/foreignJNDIProviderOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrideCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity.
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}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinkCreateForm rel=foreignJNDILinkCreateForm
The create form resource for this resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDIProviderOverrideMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDIProviderOverrideMBean entity.
This resource manages the create forms for the foreignJNDILinks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDILinkOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDILinkOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinkCreateForm 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}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDILinkOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDILinkOverrideMBean entity.
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}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/foreignJNDIProviderOverrides/{name}/foreignJNDILinks/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDILinkOverrideMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDILinkOverrideMBean entity.
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}/edit/partitions/{name}/internalAppDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/internalAppDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/update rel=update
This resource's update resource.
Update this weblogic.management.configuration.AppDeploymentMBean instance.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy this application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeploymentCreateForm 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}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalAppDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
Update this application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/partitions/{name}/internalLibraries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/internalLibraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.LibraryMBean instance.
Must contain a weblogic.management.configuration.LibraryMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeploymentCreateForm 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}/edit/partitions/{name}/internalLibraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/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}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/internalLibraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the JDBCSystemResourceOverrides collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResourceOverrides collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrideCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrideCreateForm rel=self
This 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}/edit/partitions/{name}/JDBCSystemResourceOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrideCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides rel=self
This resource.
Add a new weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity.
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}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrideCreateForm rel=JDBCPropertyOverrideCreateForm
The create form resource for this resource's JDBCPropertyOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides rel=JDBCPropertyOverrides
This resource's JDBCPropertyOverrides collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name} rel=self
This resource.
Update this weblogic.management.configuration.JDBCSystemResourceOverrideMBean instance.
Must contain a weblogic.management.configuration.JDBCSystemResourceOverrideMBean entity.
This resource manages the create forms for the JDBCPropertyOverrides collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCPropertyOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCPropertyOverrides collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCPropertyOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrideCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a collection of weblogic.management.configuration.JDBCPropertyOverrideMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.configuration.JDBCPropertyOverrideMBean instances.
Contains a list of weblogic.management.configuration.JDBCPropertyOverrideMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrideCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides rel=self
This resource.
Add a new weblogic.management.configuration.JDBCPropertyOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCPropertyOverrideMBean entity.
This resource manages a weblogic.management.configuration.JDBCPropertyOverrideMBean instance.
The resource supports the following methods:
Get this weblogic.management.configuration.JDBCPropertyOverrideMBean instance.
Contains a weblogic.management.configuration.JDBCPropertyOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JDBCSystemResourceOverrides/{name}/JDBCPropertyOverrides/{name} rel=self
This resource.
Update this weblogic.management.configuration.JDBCPropertyOverrideMBean instance.
Must contain a weblogic.management.configuration.JDBCPropertyOverrideMBean entity.
This resource manages the create forms for the JMSSystemResourceOverrides collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResourceOverrides collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrideCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrideCreateForm 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}/edit/partitions/{name}/JMSSystemResourceOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrideCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides rel=self
This resource.
Add a new weblogic.management.configuration.JMSSystemResourceOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity.
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServerCreateForm rel=foreignServerCreateForm
The create form resource for this resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSSystemResourceOverrideMBean instance.
Must contain a weblogic.management.configuration.JMSSystemResourceOverrideMBean entity.
This resource manages the create forms for the foreignServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignServerOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignServerOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServerCreateForm 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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=self
This resource.
Add a new weblogic.management.configuration.ForeignServerOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignServerOverrideMBean entity.
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIPropertyCreateForm rel=JNDIPropertyCreateForm
The create form resource for this resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=foreignConnectionFactoryCreateForm
The create form resource for this resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinationCreateForm rel=foreignDestinationCreateForm
The create form resource for this resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignServerOverrideMBean instance.
Must contain a weblogic.management.configuration.ForeignServerOverrideMBean entity.
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean entity.
This resource manages a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance.
The resource supports the following methods:
Delete this weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance.
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean instance.
Must contain a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean entity.
This resource manages the create forms for the foreignConnectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignConnectionFactoryOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the foreignDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignDestinationOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignDestinationOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.ForeignDestinationOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignDestinationOverrideMBean entity.
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/foreignDestinations rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ForeignDestinationOverrideMBean instance.
Must contain a weblogic.management.configuration.ForeignDestinationOverrideMBean entity.
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.PartitionPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.PartitionPropertyMBean entity.
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}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.PartitionPropertyMBean instance.
Must contain a weblogic.management.configuration.PartitionPropertyMBean entity.
This resource manages the create forms for the JNDIProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.PartitionPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.PartitionPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name}/JNDIProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JMSSystemResourceOverrides/{name}/foreignServers/{name} 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}/edit/partitions/{name}/JTAPartition rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/JTAPartition rel=self
This resource.
Update this weblogic.management.configuration.JTAPartitionMBean instance.
Must contain a weblogic.management.configuration.JTAPartitionMBean entity.
The resource supports the following methods:
This resource manages the create forms for the mailSessionOverrides collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MailSessionOverrideMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessionOverrides collection resource to create a new instance.
Contains a weblogic.management.configuration.MailSessionOverrideMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrideCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrides rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrideCreateForm rel=self
This resource.
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}/edit/partitions/{name}/mailSessionOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrideCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrides rel=self
This resource.
Add a new weblogic.management.configuration.MailSessionOverrideMBean instance to this collection.
Must contain a weblogic.management.configuration.MailSessionOverrideMBean entity.
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}/edit/partitions/{name}/mailSessionOverrides/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrides rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/mailSessionOverrides/{name} rel=self
This resource.
Update this weblogic.management.configuration.MailSessionOverrideMBean instance.
Must contain a weblogic.management.configuration.MailSessionOverrideMBean entity.
This resource manages the create forms for the managedExecutorServiceTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServiceTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplateCreateForm 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}/edit/partitions/{name}/managedExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
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}/edit/partitions/{name}/managedExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedExecutorServiceTemplates/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedExecutorServiceTemplateMBean instance.
Must contain a weblogic.management.configuration.ManagedExecutorServiceTemplateMBean entity.
This resource manages the create forms for the managedScheduledExecutorServiceTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServiceTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplateCreateForm 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}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
This resource manages a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
The resource supports the following methods:
Delete this weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
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}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedScheduledExecutorServiceTemplates/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean instance.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceTemplateMBean entity.
This resource manages the create forms for the managedThreadFactoryTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactoryTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplateCreateForm 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}/edit/partitions/{name}/managedThreadFactoryTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
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}/edit/partitions/{name}/managedThreadFactoryTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/managedThreadFactoryTemplates/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedThreadFactoryTemplateMBean instance.
Must contain a weblogic.management.configuration.ManagedThreadFactoryTemplateMBean entity.
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}/edit/partitions/{name}/partitionLog rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionLog rel=self
This resource.
Update this weblogic.management.configuration.PartitionLogMBean instance.
Must contain a weblogic.management.configuration.PartitionLogMBean entity.
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}/edit/partitions/{name}/partitionWorkManager rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManagerCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManager rel=self
This resource.
Update this weblogic.management.configuration.PartitionWorkManagerMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.PartitionWorkManagerMBean entity.
This resource manages the create forms for the partitionWorkManager optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.PartitionWorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the partitionWorkManager optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManagerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManagerCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/partitionWorkManagerCreateForm rel=self
This resource.
This resource manages the create forms for the resourceGroups collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResourceGroupMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceGroups collection resource to create a new instance.
Contains a weblogic.management.configuration.ResourceGroupMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroupCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroupCreateForm 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}/edit/partitions/{name}/resourceGroups rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroupCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups rel=self
This resource.
Add a new weblogic.management.configuration.ResourceGroupMBean instance to this collection.
Must contain a weblogic.management.configuration.ResourceGroupMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCStoreCreateForm rel=JDBCStoreCreateForm
The create form resource for this resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResourceCreateForm rel=JDBCSystemResourceCreateForm
The create form resource for this resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=JMSBridgeDestinationCreateForm
The create form resource for this resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServerCreateForm rel=JMSServerCreateForm
The create form resource for this resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResourceCreateForm rel=JMSSystemResourceCreateForm
The create form resource for this resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgentCreateForm rel=SAFAgentCreateForm
The create form resource for this resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResourceCreateForm rel=WLDFSystemResourceCreateForm
The create form resource for this resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/findEffectiveTargets rel=action title=findEffectiveTargets
This resource's findEffectiveTargets action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/lookupTarget rel=action title=lookupTarget
This resource's lookupTarget action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStoreCreateForm rel=fileStoreCreateForm
The create form resource for this resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviderCreateForm rel=foreignJNDIProviderCreateForm
The create form resource for this resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessionCreateForm rel=mailSessionCreateForm
The create form resource for this resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServiceCreateForm rel=managedExecutorServiceCreateForm
The create form resource for this resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm rel=managedScheduledExecutorServiceCreateForm
The create form resource for this resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactoryCreateForm rel=managedThreadFactoryCreateForm
The create form resource for this resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridgeCreateForm rel=messagingBridgeCreateForm
The create form resource for this resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworkCreateForm rel=osgiFrameworkCreateForm
The create form resource for this resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=osgiFrameworks
This resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name} rel=self
This resource.
Update this weblogic.management.configuration.ResourceGroupMBean instance.
Must contain a weblogic.management.configuration.ResourceGroupMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments rel=self
This resource.
The resource supports the following methods:
This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.
If the source path is relative, it is resolved relative to InstallDir/app
if InstallDir is not null; otherwise, it is resolved relative to the domain root.
Use the multi-part form to upload an application from the client to the server and then deploy it.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Use the multi-part form to deploy an application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Undeploy an application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/update rel=update
This resource's update resource.
Update this weblogic.management.configuration.AppDeploymentMBean instance.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy this application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name} 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}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
Update this application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the fileStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStoreCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStores rel=self
This resource.
Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/fileStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.FileStoreMBean instance.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
The resource supports the following methods:
This resource manages the create forms for the foreignJNDIProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviderCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=foreignJNDILinkCreateForm
The create form resource for this resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This resource manages the create forms for the foreignJNDILinks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
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}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This resource manages the create forms for the JDBCStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStoreCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores rel=self
This resource.
Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
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}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.JDBCStoreMBean instance.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
This resource manages the create forms for the JDBCSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResourceCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=propertyCreateForm
The create form resource for 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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties 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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=propertyCreateForm
The create form resource for 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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=canonical
This resource.
The collection resource for this create form 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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} 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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the JMSBridgeDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=self
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=self
This resource.
Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This resource manages the create forms for the JMSServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServerCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers rel=self
This resource.
Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSServerMBean instance.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This resource manages the create forms for the JMSSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResourceCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JMSSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=SAFErrorHandlingCreateForm
The create form resource for this resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=SAFImportedDestinationCreateForm
The create form resource for this resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=SAFRemoteContextCreateForm
The create form resource for this resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=connectionFactoryCreateForm
The create form resource for this resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=destinationKeyCreateForm
The create form resource for this resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=foreignServerCreateForm
The create form resource for this resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=queueCreateForm
The create form resource for this resource's queues collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=quotaCreateForm
The create form resource for this resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=templateCreateForm
The create form resource for this resource's templates collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=topicCreateForm
The create form resource for this resource's topics collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=uniformDistributedQueueCreateForm
The create form resource for this resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=uniformDistributedTopicCreateForm
The create form resource for this resource's uniformDistributedTopics collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
Update this weblogic.j2ee.descriptor.wl.JMSBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This resource manages the create forms for the connectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the destinationKeys collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This resource manages the create forms for the foreignServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=JNDIPropertyCreateForm
The create form resource for this resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=foreignConnectionFactoryCreateForm
The create form resource for this resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=foreignDestinationCreateForm
The create form resource for this resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This resource manages the create forms for the foreignConnectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the foreignDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This resource manages the create forms for the JNDIProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the queues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.QueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/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}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the quotas collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This resource manages the create forms for the SAFErrorHandlings collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This resource manages the create forms for the SAFImportedDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=SAFQueueCreateForm
The create form resource for this resource's SAFQueues collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=SAFTopicCreateForm
The create form resource for this resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFRemoteContexts collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This resource manages the create forms for the templates collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=groupParamCreateForm
The create form resource for this resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/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}/edit/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.
uri=/management/weblogic/{version}/edit/partitions/{name}/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
The resource supports the following methods:
This resource manages the create forms for the groupParams collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/partitions/{name}/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.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the topics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/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}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the uniformDistributedQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the uniformDistributedTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/partitions/{name}/resourceGroups/{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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean 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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} 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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries rel=self
This resource.
The resource supports the following methods:
This resource is used to deploy libraries that are already on the admininstration server.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.LibraryMBean entity.
To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.
Use the multi-part form to deploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
Upload a library from the client to the server then deploy it.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Undeploy a library.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.LibraryMBean instance.
Must contain a weblogic.management.configuration.LibraryMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
This resource manages the create forms for the mailSessions collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessionCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessions rel=self
This resource.
Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/mailSessions/{name} rel=self
This resource.
Update this weblogic.management.configuration.MailSessionMBean instance.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
This resource manages the create forms for the managedExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServiceCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This resource manages the create forms for the managedScheduledExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedScheduledExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=self
This resource.
Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This resource manages the create forms for the managedThreadFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/managedThreadFactoryCreateForm rel=self
This resource.
This resource manages the create forms for the messagingBridges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridgeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridgeCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridgeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges rel=self
This resource.
Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.management.configuration.MessagingBridgeMBean instance.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
This resource manages the create forms for the osgiFrameworks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworkCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=self
This resource.
Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/osgiFrameworks/{name} rel=self
This resource.
Update this weblogic.management.configuration.OsgiFrameworkMBean instance.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
This resource manages the create forms for the SAFAgents collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgentCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents rel=self
This resource.
Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
Update this weblogic.management.configuration.SAFAgentMBean instance.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
This resource manages the create forms for the WLDFSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResourceCreateForm 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=harvestedTypeCreateForm
The create form resource for this resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This resource manages the create forms for the harvestedTypes collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=WLDFInstrumentationMonitorCreateForm
The create form resource for this resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=JMSNotificationCreateForm
The create form resource for this resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=JMXNotificationCreateForm
The create form resource for this resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=RESTNotificationCreateForm
The create form resource for this resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=SMTPNotificationCreateForm
The create form resource for this resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=SNMPNotificationCreateForm
The create form resource for this resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=actionCreateForm
The create form resource for this resource's actions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=heapDumpActionCreateForm
The create form resource for this resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=imageNotificationCreateForm
The create form resource for this resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=logActionCreateForm
The create form resource for this resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=scaleDownActionCreateForm
The create form resource for this resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=scaleUpActionCreateForm
The create form resource for this resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=scriptActionCreateForm
The create form resource for this resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=threadDumpActionCreateForm
The create form resource for this resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=watcheCreateForm
The create form resource for this resource's watches collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=watches
This resource's watches collection resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This resource manages the create forms for the actions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=arrayPropertyCreateForm
The create form resource for this resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=mapPropertyCreateForm
The create form resource for this resource's mapProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This resource manages the create forms for the arrayProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
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}/edit/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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the mapProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the heapDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This resource manages the create forms for the imageNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This resource manages the create forms for the JMSNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This resource manages the create forms for the JMXNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This resource manages the create forms for the logActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
The resource supports the following methods:
The resource supports the following methods:
This resource manages the create forms for the RESTNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This resource manages the create forms for the scaleDownActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This resource manages the create forms for the scaleUpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This resource manages the create forms for the scriptActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This resource manages the create forms for the SMTPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This resource manages the create forms for the SNMPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This resource manages the create forms for the threadDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This resource manages the create forms for the watches collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/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.
Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/partitions/{name}/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
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}/edit/partitions/{name}/resourceManager rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization rel=cpuUtilization
This resource's cpuUtilization singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilizationCreateForm rel=cpuUtilizationCreateForm
The create form resource for this resource's cpuUtilization optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManagerCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen rel=fileOpen
This resource's fileOpen singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpenCreateForm rel=fileOpenCreateForm
The create form resource for this resource's fileOpen optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained rel=heapRetained
This resource's heapRetained singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetainedCreateForm rel=heapRetainedCreateForm
The create form resource for this resource's heapRetained optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/restartLoopProtection rel=restartLoopProtection
This resource's restartLoopProtection singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=self
This resource.
Update this weblogic.management.configuration.ResourceManagerMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.ResourceManagerMBean entity.
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}/edit/partitions/{name}/resourceManager/cpuUtilization rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilizationCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraintCreateForm rel=fairShareConstraintCreateForm
The create form resource for this resource's fairShareConstraint optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggerCreateForm rel=triggerCreateForm
The create form resource for this resource's triggers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers rel=triggers
This resource's triggers collection resource.
Update this weblogic.management.configuration.CpuUtilizationMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.CpuUtilizationMBean entity.
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}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraintCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraint rel=self
This resource.
Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FairShareConstraintMBean entity.
This resource manages the create forms for the fairShareConstraint optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraintCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/fairShareConstraintCreateForm rel=self
This resource.
This resource manages the create forms for the triggers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggerCreateForm 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}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers rel=self
This resource.
Add a new weblogic.management.configuration.TriggerMBean instance to this collection.
Must contain a weblogic.management.configuration.TriggerMBean entity.
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}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilization/triggers/{name} rel=self
This resource.
Update this weblogic.management.configuration.TriggerMBean instance.
Must contain a weblogic.management.configuration.TriggerMBean entity.
This resource manages the create forms for the cpuUtilization optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CpuUtilizationMBean entity populated with default values that can be customized then posted (using the POST method) to the cpuUtilization optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.CpuUtilizationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilizationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilizationCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/cpuUtilizationCreateForm 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}/edit/partitions/{name}/resourceManager/fileOpen rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpenCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggerCreateForm rel=triggerCreateForm
The create form resource for this resource's triggers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggers rel=triggers
This resource's triggers collection resource.
Update this weblogic.management.configuration.FileOpenMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FileOpenMBean entity.
This resource manages the create forms for the triggers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggerCreateForm 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}/edit/partitions/{name}/resourceManager/fileOpen/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggers rel=self
This resource.
Add a new weblogic.management.configuration.TriggerMBean instance to this collection.
Must contain a weblogic.management.configuration.TriggerMBean entity.
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}/edit/partitions/{name}/resourceManager/fileOpen/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpen/triggers/{name} rel=self
This resource.
Update this weblogic.management.configuration.TriggerMBean instance.
Must contain a weblogic.management.configuration.TriggerMBean entity.
This resource manages the create forms for the fileOpen optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FileOpenMBean entity populated with default values that can be customized then posted (using the POST method) to the fileOpen optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FileOpenMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpenCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpenCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/fileOpenCreateForm 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}/edit/partitions/{name}/resourceManager/heapRetained rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetainedCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraintCreateForm rel=fairShareConstraintCreateForm
The create form resource for this resource's fairShareConstraint optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggerCreateForm rel=triggerCreateForm
The create form resource for this resource's triggers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggers rel=triggers
This resource's triggers collection resource.
Update this weblogic.management.configuration.HeapRetainedMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.HeapRetainedMBean entity.
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}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraintCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraint rel=self
This resource.
Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FairShareConstraintMBean entity.
This resource manages the create forms for the fairShareConstraint optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraintCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/fairShareConstraintCreateForm rel=self
This resource.
This resource manages the create forms for the triggers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggerCreateForm 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}/edit/partitions/{name}/resourceManager/heapRetained/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggers rel=self
This resource.
Add a new weblogic.management.configuration.TriggerMBean instance to this collection.
Must contain a weblogic.management.configuration.TriggerMBean entity.
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}/edit/partitions/{name}/resourceManager/heapRetained/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetained/triggers/{name} rel=self
This resource.
Update this weblogic.management.configuration.TriggerMBean instance.
Must contain a weblogic.management.configuration.TriggerMBean entity.
This resource manages the create forms for the heapRetained optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.HeapRetainedMBean entity populated with default values that can be customized then posted (using the POST method) to the heapRetained optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.HeapRetainedMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetainedCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetainedCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/heapRetainedCreateForm 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}/edit/partitions/{name}/resourceManager/restartLoopProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManager/restartLoopProtection rel=self
This resource.
Update this weblogic.management.configuration.RestartLoopProtectionMBean instance.
Must contain a weblogic.management.configuration.RestartLoopProtectionMBean entity.
This resource manages the create forms for the resourceManager optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResourceManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceManager optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.ResourceManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManagerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManagerCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/resourceManagerCreateForm 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}/edit/partitions/{name}/selfTuning rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacities rel=capacities
This resource's capacities collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacityCreateForm rel=capacityCreateForm
The create form resource for this resource's capacities collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClassCreateForm rel=contextRequestClassCreateForm
The create form resource for this resource's contextRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses rel=contextRequestClasses
This resource's contextRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClassCreateForm rel=fairShareRequestClassCreateForm
The create form resource for this resource's fairShareRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClasses rel=fairShareRequestClasses
This resource's fairShareRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraintCreateForm rel=maxThreadsConstraintCreateForm
The create form resource for this resource's maxThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraints rel=maxThreadsConstraints
This resource's maxThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraintCreateForm rel=minThreadsConstraintCreateForm
The create form resource for this resource's minThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraints rel=minThreadsConstraints
This resource's minThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClassCreateForm rel=responseTimeRequestClassCreateForm
The create form resource for this resource's responseTimeRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses rel=responseTimeRequestClasses
This resource's responseTimeRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagerCreateForm rel=workManagerCreateForm
The create form resource for this resource's workManagers collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers rel=workManagers
This resource's workManagers collection resource.
Update this weblogic.management.configuration.SelfTuningMBean instance.
Must contain a weblogic.management.configuration.SelfTuningMBean entity.
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}/edit/partitions/{name}/selfTuning/capacities rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacityCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacities rel=self
This resource.
Add a new weblogic.management.configuration.CapacityMBean instance to this collection.
Must contain a weblogic.management.configuration.CapacityMBean entity.
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}/edit/partitions/{name}/selfTuning/capacities/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacities rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacities/{name} rel=self
This resource.
Update this weblogic.management.configuration.CapacityMBean instance.
Must contain a weblogic.management.configuration.CapacityMBean entity.
This resource manages the create forms for the capacities collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CapacityMBean entity populated with default values that can be customized then posted (using the POST method) to the capacities collection resource to create a new instance.
Contains a weblogic.management.configuration.CapacityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacityCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacities rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/capacityCreateForm rel=self
This resource.
This resource manages the create forms for the contextRequestClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ContextRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the contextRequestClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.ContextRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClassCreateForm 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}/edit/partitions/{name}/selfTuning/contextRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses rel=self
This resource.
Add a new weblogic.management.configuration.ContextRequestClassMBean instance to this collection.
Must contain a weblogic.management.configuration.ContextRequestClassMBean entity.
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}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm rel=contextCaseCreateForm
The create form resource for this resource's contextCases collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=contextCases
This resource's contextCases collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.ContextRequestClassMBean instance.
Must contain a weblogic.management.configuration.ContextRequestClassMBean entity.
This resource manages the create forms for the contextCases collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ContextCaseMBean entity populated with default values that can be customized then posted (using the POST method) to the contextCases collection resource to create a new instance.
Contains a weblogic.management.configuration.ContextCaseMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm 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}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=self
This resource.
Add a new weblogic.management.configuration.ContextCaseMBean instance to this collection.
Must contain a weblogic.management.configuration.ContextCaseMBean entity.
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}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=fairShareRequestClass
This resource's fairShareRequestClass singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm rel=fairShareRequestClassCreateForm
The create form resource for this resource's fairShareRequestClass optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=responseTimeRequestClass
This resource's responseTimeRequestClass singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm rel=responseTimeRequestClassCreateForm
The create form resource for this resource's responseTimeRequestClass optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=self
This resource.
Update this weblogic.management.configuration.ContextCaseMBean instance.
Must contain a weblogic.management.configuration.ContextCaseMBean entity.
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}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.FairShareRequestClassMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FairShareRequestClassMBean entity.
This resource manages the create forms for the fairShareRequestClass optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClass optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm rel=canonical
This resource.
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ResponseTimeRequestClassMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This resource manages the create forms for the responseTimeRequestClass optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClass optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm rel=canonical
This resource.
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the fairShareRequestClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClassCreateForm rel=self
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}/edit/partitions/{name}/selfTuning/fairShareRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClasses rel=self
This resource.
Add a new weblogic.management.configuration.FairShareRequestClassMBean instance to this collection.
Must contain a weblogic.management.configuration.FairShareRequestClassMBean entity.
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}/edit/partitions/{name}/selfTuning/fairShareRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/fairShareRequestClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.FairShareRequestClassMBean instance.
Must contain a weblogic.management.configuration.FairShareRequestClassMBean entity.
This resource manages the create forms for the maxThreadsConstraints collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MaxThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the maxThreadsConstraints collection resource to create a new instance.
Contains a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraints rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraintCreateForm 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}/edit/partitions/{name}/selfTuning/maxThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraintCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraints rel=self
This resource.
Add a new weblogic.management.configuration.MaxThreadsConstraintMBean instance to this collection.
Must contain a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
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}/edit/partitions/{name}/selfTuning/maxThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/maxThreadsConstraints/{name} rel=self
This resource.
Update this weblogic.management.configuration.MaxThreadsConstraintMBean instance.
Must contain a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
This resource manages the create forms for the minThreadsConstraints collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MinThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the minThreadsConstraints collection resource to create a new instance.
Contains a weblogic.management.configuration.MinThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraints rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraintCreateForm 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}/edit/partitions/{name}/selfTuning/minThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraintCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraints rel=self
This resource.
Add a new weblogic.management.configuration.MinThreadsConstraintMBean instance to this collection.
Must contain a weblogic.management.configuration.MinThreadsConstraintMBean entity.
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}/edit/partitions/{name}/selfTuning/minThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/minThreadsConstraints/{name} rel=self
This resource.
Update this weblogic.management.configuration.MinThreadsConstraintMBean instance.
Must contain a weblogic.management.configuration.MinThreadsConstraintMBean entity.
This resource manages the create forms for the responseTimeRequestClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClassCreateForm 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}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses rel=self
This resource.
Add a new weblogic.management.configuration.ResponseTimeRequestClassMBean instance to this collection.
Must contain a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
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}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/responseTimeRequestClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
Must contain a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This resource manages the create forms for the workManagers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagers collection resource to create a new instance.
Contains a weblogic.management.configuration.WorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagerCreateForm 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}/edit/partitions/{name}/selfTuning/workManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers rel=self
This resource.
Add a new weblogic.management.configuration.WorkManagerMBean instance to this collection.
Must contain a weblogic.management.configuration.WorkManagerMBean entity.
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}/edit/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}/edit/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}/edit/partitions/{name}/selfTuning/workManagers/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=workManagerShutdownTrigger
This resource's workManagerShutdownTrigger singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=workManagerShutdownTriggerCreateForm
The create form resource for this resource's workManagerShutdownTrigger optional singleton resource.
Update this weblogic.management.configuration.WorkManagerMBean instance.
Must contain a weblogic.management.configuration.WorkManagerMBean entity.
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}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=self
This resource.
Update this weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity.
This resource manages the create forms for the workManagerShutdownTrigger optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagerShutdownTrigger optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/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}/edit/partitions/{name}/systemFileSystem rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/systemFileSystem rel=self
This resource.
Update this weblogic.management.configuration.PartitionFileSystemMBean instance.
Must contain a weblogic.management.configuration.PartitionFileSystemMBean entity.
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}/edit/partitions/{name}/userFileSystem rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/userFileSystem rel=self
This resource.
Update this weblogic.management.configuration.PartitionUserFileSystemMBean instance.
Must contain a weblogic.management.configuration.PartitionUserFileSystemMBean entity.
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}/edit/partitions/{name}/webService rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering rel=webServiceBuffering
This resource's webServiceBuffering singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence rel=webServicePersistence
This resource's webServicePersistence singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceReliability rel=webServiceReliability
This resource's webServiceReliability singleton resource.
Update this weblogic.management.configuration.WebServiceMBean instance.
Must contain a weblogic.management.configuration.WebServiceMBean entity.
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}/edit/partitions/{name}/webService/webServiceBuffering rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=webServiceRequestBufferingQueue
This resource's webServiceRequestBufferingQueue singleton resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=webServiceResponseBufferingQueue
This resource's webServiceResponseBufferingQueue singleton resource.
Update this weblogic.management.configuration.WebServiceBufferingMBean instance.
Must contain a weblogic.management.configuration.WebServiceBufferingMBean entity.
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}/edit/partitions/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=self
This resource.
Update this weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
Must contain a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean entity.
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}/edit/partitions/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=self
This resource.
Update this weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
Must contain a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean entity.
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}/edit/partitions/{name}/webService/webServicePersistence rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence rel=self
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=webServiceLogicalStoreCreateForm
The create form resource for this resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=webServiceLogicalStores
This resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=webServicePhysicalStoreCreateForm
The create form resource for this resource's webServicePhysicalStores collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=webServicePhysicalStores
This resource's webServicePhysicalStores collection resource.
Update this weblogic.management.configuration.WebServicePersistenceMBean instance.
Must contain a weblogic.management.configuration.WebServicePersistenceMBean entity.
This resource manages the create forms for the webServiceLogicalStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebServiceLogicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServiceLogicalStores collection resource to create a new instance.
Contains a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
This 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}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=self
This resource.
Add a new weblogic.management.configuration.WebServiceLogicalStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
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}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
Must contain a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This resource manages the create forms for the webServicePhysicalStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebServicePhysicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServicePhysicalStores collection resource to create a new instance.
Contains a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence 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}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=self
This resource.
Add a new weblogic.management.configuration.WebServicePhysicalStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
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}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServicePersistence/webServicePhysicalStores rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
Must contain a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
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}/edit/partitions/{name}/webService/webServiceReliability rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitions/{name}/webService/webServiceReliability rel=self
This resource.
Update this weblogic.management.configuration.WebServiceReliabilityMBean instance.
Must contain a weblogic.management.configuration.WebServiceReliabilityMBean entity.
This resource manages the create forms for the partitionWorkManagers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.PartitionWorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the partitionWorkManagers collection resource to create a new instance.
Contains a weblogic.management.configuration.PartitionWorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/partitionWorkManagerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagerCreateForm 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}/edit/partitionWorkManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagers rel=self
This resource.
Add a new weblogic.management.configuration.PartitionWorkManagerMBean instance to this collection.
Must contain a weblogic.management.configuration.PartitionWorkManagerMBean entity.
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}/edit/partitionWorkManagers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/partitionWorkManagers/{name} rel=self
This resource.
Update this weblogic.management.configuration.PartitionWorkManagerMBean instance.
Must contain a weblogic.management.configuration.PartitionWorkManagerMBean entity.
This resource manages the create forms for the resourceGroups collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResourceGroupMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceGroups collection resource to create a new instance.
Contains a weblogic.management.configuration.ResourceGroupMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupCreateForm 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}/edit/resourceGroups rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups rel=self
This resource.
Add a new weblogic.management.configuration.ResourceGroupMBean instance to this collection.
Must contain a weblogic.management.configuration.ResourceGroupMBean entity.
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}/edit/resourceGroups/{name}/JDBCStoreCreateForm rel=JDBCStoreCreateForm
The create form resource for this resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResourceCreateForm rel=JDBCSystemResourceCreateForm
The create form resource for this resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=JMSBridgeDestinationCreateForm
The create form resource for this resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServerCreateForm rel=JMSServerCreateForm
The create form resource for this resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResourceCreateForm rel=JMSSystemResourceCreateForm
The create form resource for this resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgentCreateForm rel=SAFAgentCreateForm
The create form resource for this resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResourceCreateForm rel=WLDFSystemResourceCreateForm
The create form resource for this resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/findEffectiveTargets rel=action title=findEffectiveTargets
This resource's findEffectiveTargets action resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/lookupTarget rel=action title=lookupTarget
This resource's lookupTarget action resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStoreCreateForm rel=fileStoreCreateForm
The create form resource for this resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviderCreateForm rel=foreignJNDIProviderCreateForm
The create form resource for this resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessionCreateForm rel=mailSessionCreateForm
The create form resource for this resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServiceCreateForm rel=managedExecutorServiceCreateForm
The create form resource for this resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm rel=managedScheduledExecutorServiceCreateForm
The create form resource for this resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactoryCreateForm rel=managedThreadFactoryCreateForm
The create form resource for this resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridgeCreateForm rel=messagingBridgeCreateForm
The create form resource for this resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworkCreateForm rel=osgiFrameworkCreateForm
The create form resource for this resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworks rel=osgiFrameworks
This resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name} rel=self
This resource.
Update this weblogic.management.configuration.ResourceGroupMBean instance.
Must contain a weblogic.management.configuration.ResourceGroupMBean entity.
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}/edit/resourceGroups/{name}/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments rel=self
This resource.
The resource supports the following methods:
This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.
If the source path is relative, it is resolved relative to InstallDir/app
if InstallDir is not null; otherwise, it is resolved relative to the domain root.
Use the multi-part form to upload an application from the client to the server and then deploy it.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Use the multi-part form to deploy an application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Undeploy an application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/resourceGroups/{name}/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/update rel=update
This resource's update resource.
Update this weblogic.management.configuration.AppDeploymentMBean instance.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy this application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm 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}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/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}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
Update this application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the fileStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStoreCreateForm 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}/edit/resourceGroups/{name}/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStores rel=self
This resource.
Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
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}/edit/resourceGroups/{name}/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/fileStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.FileStoreMBean instance.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
The resource supports the following methods:
This resource manages the create forms for the foreignJNDIProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviderCreateForm 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}/edit/resourceGroups/{name}/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
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}/edit/resourceGroups/{name}/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=foreignJNDILinkCreateForm
The create form resource for this resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This resource manages the create forms for the foreignJNDILinks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm 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}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
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}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This resource manages the create forms for the JDBCStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStoreCreateForm 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}/edit/resourceGroups/{name}/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStores rel=self
This resource.
Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
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}/edit/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}/edit/resourceGroups/{name}/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.JDBCStoreMBean instance.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
This resource manages the create forms for the JDBCSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResourceCreateForm 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}/edit/resourceGroups/{name}/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties 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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=propertyCreateForm
The create form resource for 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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/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.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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm 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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the JMSBridgeDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=self
This 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}/edit/resourceGroups/{name}/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinations rel=self
This resource.
Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
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}/edit/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSBridgeDestinations/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This resource manages the create forms for the JMSServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServerCreateForm 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}/edit/resourceGroups/{name}/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers rel=self
This resource.
Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JMSServers/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSServerMBean instance.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSServers/{name}/JMSMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This resource manages the create forms for the JMSSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResourceCreateForm 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}/edit/resourceGroups/{name}/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JMSSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=SAFErrorHandlingCreateForm
The create form resource for this resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=SAFImportedDestinationCreateForm
The create form resource for this resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=SAFRemoteContextCreateForm
The create form resource for this resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=connectionFactoryCreateForm
The create form resource for this resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=destinationKeyCreateForm
The create form resource for this resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=foreignServerCreateForm
The create form resource for this resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=queueCreateForm
The create form resource for this resource's queues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=quotaCreateForm
The create form resource for this resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=templateCreateForm
The create form resource for this resource's templates collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=topicCreateForm
The create form resource for this resource's topics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=uniformDistributedQueueCreateForm
The create form resource for this resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=uniformDistributedTopicCreateForm
The create form resource for this resource's uniformDistributedTopics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
Update this weblogic.j2ee.descriptor.wl.JMSBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This resource manages the create forms for the connectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the destinationKeys collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This resource manages the create forms for the foreignServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=JNDIPropertyCreateForm
The create form resource for this resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=foreignConnectionFactoryCreateForm
The create form resource for this resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=foreignDestinationCreateForm
The create form resource for this resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This resource manages the create forms for the foreignConnectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the foreignDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This resource manages the create forms for the JNDIProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the queues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=self
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.QueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the quotas collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=self
This 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This resource manages the create forms for the SAFErrorHandlings collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This resource manages the create forms for the SAFImportedDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=SAFQueueCreateForm
The create form resource for this resource's SAFQueues collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=SAFTopicCreateForm
The create form resource for this resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFRemoteContexts collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This resource manages the create forms for the templates collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=self
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=groupParamCreateForm
The create form resource for this resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
The resource supports the following methods:
This resource manages the create forms for the groupParams collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the topics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=self
This 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the uniformDistributedQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the uniformDistributedTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm 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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries rel=self
This resource.
The resource supports the following methods:
This resource is used to deploy libraries that are already on the admininstration server.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.LibraryMBean entity.
To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.
Use the multi-part form to deploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
Upload a library from the client to the server then deploy it.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Undeploy a library.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/resourceGroups/{name}/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.LibraryMBean instance.
Must contain a weblogic.management.configuration.LibraryMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm 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}/edit/resourceGroups/{name}/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/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}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
This resource manages the create forms for the mailSessions collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessionCreateForm 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}/edit/resourceGroups/{name}/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessions rel=self
This resource.
Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
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}/edit/resourceGroups/{name}/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/mailSessions/{name} rel=self
This resource.
Update this weblogic.management.configuration.MailSessionMBean instance.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
This resource manages the create forms for the managedExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServiceCreateForm 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}/edit/resourceGroups/{name}/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
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}/edit/resourceGroups/{name}/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This resource manages the create forms for the managedScheduledExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm 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}/edit/resourceGroups/{name}/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
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}/edit/resourceGroups/{name}/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedScheduledExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
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}/edit/resourceGroups/{name}/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactories rel=self
This resource.
Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
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}/edit/resourceGroups/{name}/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactories/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This resource manages the create forms for the managedThreadFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/managedThreadFactoryCreateForm rel=self
This resource.
This resource manages the create forms for the messagingBridges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridgeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridgeCreateForm 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}/edit/resourceGroups/{name}/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridgeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridges rel=self
This resource.
Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
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}/edit/resourceGroups/{name}/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.management.configuration.MessagingBridgeMBean instance.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
This resource manages the create forms for the osgiFrameworks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworkCreateForm 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}/edit/resourceGroups/{name}/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworks rel=self
This resource.
Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
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}/edit/resourceGroups/{name}/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/osgiFrameworks/{name} rel=self
This resource.
Update this weblogic.management.configuration.OsgiFrameworkMBean instance.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
This resource manages the create forms for the SAFAgents collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgentCreateForm 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}/edit/resourceGroups/{name}/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents rel=self
This resource.
Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
Update this weblogic.management.configuration.SAFAgentMBean instance.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
This resource manages the create forms for the WLDFSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResourceCreateForm 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}/edit/resourceGroups/{name}/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=harvestedTypeCreateForm
The create form resource for this resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This resource manages the create forms for the harvestedTypes collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=WLDFInstrumentationMonitorCreateForm
The create form resource for this resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=JMSNotificationCreateForm
The create form resource for this resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=JMXNotificationCreateForm
The create form resource for this resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=RESTNotificationCreateForm
The create form resource for this resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=SMTPNotificationCreateForm
The create form resource for this resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=SNMPNotificationCreateForm
The create form resource for this resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=actionCreateForm
The create form resource for this resource's actions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=heapDumpActionCreateForm
The create form resource for this resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=imageNotificationCreateForm
The create form resource for this resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=logActionCreateForm
The create form resource for this resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=scaleDownActionCreateForm
The create form resource for this resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=scaleUpActionCreateForm
The create form resource for this resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=scriptActionCreateForm
The create form resource for this resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=threadDumpActionCreateForm
The create form resource for this resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=watcheCreateForm
The create form resource for this resource's watches collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=watches
This resource's watches collection resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This resource manages the create forms for the actions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=arrayPropertyCreateForm
The create form resource for this resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=mapPropertyCreateForm
The create form resource for this resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This resource manages the create forms for the arrayProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/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}/edit/resourceGroups/{name}/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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for 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.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the mapProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the heapDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This resource manages the create forms for the imageNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This resource manages the create forms for the JMSNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This resource manages the create forms for the JMXNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This resource manages the create forms for the logActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
The resource supports the following methods:
The resource supports the following methods:
This resource manages the create forms for the RESTNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This resource manages the create forms for the scaleDownActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This resource manages the create forms for the scaleUpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This resource manages the create forms for the scriptActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This resource manages the create forms for the SMTPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This resource manages the create forms for the SNMPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This resource manages the create forms for the threadDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This resource manages the create forms for the watches collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=schedule
This resource's schedule singleton resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroups/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This resource manages the create forms for the resourceGroupTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResourceGroupTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceGroupTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ResourceGroupTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplateCreateForm rel=self
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}/edit/resourceGroupTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ResourceGroupTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ResourceGroupTemplateMBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCStoreCreateForm rel=JDBCStoreCreateForm
The create form resource for this resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStores rel=JDBCStores
This resource's JDBCStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResourceCreateForm rel=JDBCSystemResourceCreateForm
The create form resource for this resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources rel=JDBCSystemResources
This resource's JDBCSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinationCreateForm rel=JMSBridgeDestinationCreateForm
The create form resource for this resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=JMSBridgeDestinations
This resource's JMSBridgeDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServerCreateForm rel=JMSServerCreateForm
The create form resource for this resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers rel=JMSServers
This resource's JMSServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResourceCreateForm rel=JMSSystemResourceCreateForm
The create form resource for this resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources rel=JMSSystemResources
This resource's JMSSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgentCreateForm rel=SAFAgentCreateForm
The create form resource for this resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents rel=SAFAgents
This resource's SAFAgents collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResourceCreateForm rel=WLDFSystemResourceCreateForm
The create form resource for this resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources rel=WLDFSystemResources
This resource's WLDFSystemResources collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments rel=appDeployments
This resource's appDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStoreCreateForm rel=fileStoreCreateForm
The create form resource for this resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStores rel=fileStores
This resource's fileStores collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviderCreateForm rel=foreignJNDIProviderCreateForm
The create form resource for this resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders rel=foreignJNDIProviders
This resource's foreignJNDIProviders collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries rel=libraries
This resource's libraries collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessionCreateForm rel=mailSessionCreateForm
The create form resource for this resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessions rel=mailSessions
This resource's mailSessions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServiceCreateForm rel=managedExecutorServiceCreateForm
The create form resource for this resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServices rel=managedExecutorServices
This resource's managedExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServiceCreateForm rel=managedScheduledExecutorServiceCreateForm
The create form resource for this resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=managedScheduledExecutorServices
This resource's managedScheduledExecutorServices collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactories rel=managedThreadFactories
This resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactoryCreateForm rel=managedThreadFactoryCreateForm
The create form resource for this resource's managedThreadFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridgeCreateForm rel=messagingBridgeCreateForm
The create form resource for this resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridges rel=messagingBridges
This resource's messagingBridges collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworkCreateForm rel=osgiFrameworkCreateForm
The create form resource for this resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworks rel=osgiFrameworks
This resource's osgiFrameworks collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=self
This resource.
Update this weblogic.management.configuration.ResourceGroupTemplateMBean instance.
Must contain a weblogic.management.configuration.ResourceGroupTemplateMBean entity.
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}/edit/resourceGroupTemplates/{name}/appDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments rel=self
This resource.
The resource supports the following methods:
This resource deploys is used to deploy applications that are already on the adminitration server. The application must be a supported package type (for example, an EAR or WAR module).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
To deploy an application you must provide the name of the application, the path to the source of the deployable unit on the administration server, and the targets to which the application will be deployed.
If the source path is relative, it is resolved relative to InstallDir/app
if InstallDir is not null; otherwise, it is resolved relative to the domain root.
Use the multi-part form to upload an application from the client to the server and then deploy it.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information (however, deployment/plan information is ignored) (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Use the multi-part form to deploy an application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This resource manages a weblogic.management.configuration.AppDeploymentMBean instance.
The resource supports the following methods:
Undeploy an application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/update rel=update
This resource's update resource.
Update this weblogic.management.configuration.AppDeploymentMBean instance.
Must contain a weblogic.management.configuration.AppDeploymentMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy this application.
sourcePath: the deployment to upload (required)
planPath: the deployment plan to upload (optional)
model: JSONObject containing an AppDeploymentMBean entity that contains the rest of the deployment information. However, deployment/plan information is ignored. (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeploymentCreateForm 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}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/appDeployments/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
The resource supports the following methods:
Update this application.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the fileStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FileStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the fileStores collection resource to create a new instance.
Contains a weblogic.management.configuration.FileStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStoreCreateForm 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}/edit/resourceGroupTemplates/{name}/fileStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStores rel=self
This resource.
Add a new weblogic.management.configuration.FileStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
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}/edit/resourceGroupTemplates/{name}/fileStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/fileStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.FileStoreMBean instance.
Must contain a weblogic.management.configuration.FileStoreMBean entity.
This resource manages the create forms for the foreignJNDIProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDIProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDIProviders collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviderCreateForm 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}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDIProviderMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
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}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=foreignJNDILinkCreateForm
The create form resource for this resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=foreignJNDILinks
This resource's foreignJNDILinks collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDIProviderMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDIProviderMBean entity.
This resource manages the create forms for the foreignJNDILinks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ForeignJNDILinkMBean entity populated with default values that can be customized then posted (using the POST method) to the foreignJNDILinks collection resource to create a new instance.
Contains a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
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}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=self
This resource.
Add a new weblogic.management.configuration.ForeignJNDILinkMBean instance to this collection.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
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}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/foreignJNDIProviders/{name}/foreignJNDILinks/{name} rel=self
This resource.
Update this weblogic.management.configuration.ForeignJNDILinkMBean instance.
Must contain a weblogic.management.configuration.ForeignJNDILinkMBean entity.
This resource manages the create forms for the JDBCStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCStores collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStoreCreateForm 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}/edit/resourceGroupTemplates/{name}/JDBCStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStores rel=self
This resource.
Add a new weblogic.management.configuration.JDBCStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
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}/edit/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}/edit/resourceGroupTemplates/{name}/JDBCStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.JDBCStoreMBean instance.
Must contain a weblogic.management.configuration.JDBCStoreMBean entity.
This resource manages the create forms for the JDBCSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JDBCSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JDBCSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JDBCSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResourceCreateForm 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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JDBCSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=JDBCResource
This resource's JDBCResource singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JDBCSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JDBCSystemResourceMBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=JDBCConnectionPoolParams
This resource's JDBCConnectionPoolParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=JDBCDataSourceParams
This resource's JDBCDataSourceParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=JDBCDriverParams
This resource's JDBCDriverParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=JDBCOracleParams
This resource's JDBCOracleParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=JDBCXAParams
This resource's JDBCXAParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=internalProperties
This resource's internalProperties singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=propertyCreateForm
The create form resource for 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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/propertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties/properties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/internalProperties 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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCConnectionPoolParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCConnectionPoolParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDataSourceParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDataSourceParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=properties
This resource's properties singleton resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCDriverParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=propertyCreateForm
The create form resource for 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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCPropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JDBCPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/properties/propertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCDriverParams/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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCOracleParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCOracleParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource/JDBCXAParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/JDBCResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.JDBCXAParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JDBCXAParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm 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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JDBCSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the JMSBridgeDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSBridgeDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSBridgeDestinations collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinationCreateForm rel=self
This 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}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=self
This resource.
Add a new weblogic.management.configuration.JMSBridgeDestinationMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSBridgeDestinations/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSBridgeDestinationMBean instance.
Must contain a weblogic.management.configuration.JMSBridgeDestinationMBean entity.
This resource manages the create forms for the JMSServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSServerMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSServers collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServerCreateForm 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}/edit/resourceGroupTemplates/{name}/JMSServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers rel=self
This resource.
Add a new weblogic.management.configuration.JMSServerMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile rel=JMSMessageLogFile
This resource's JMSMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/JMSServers/{name} rel=self
This resource.
Update this weblogic.management.configuration.JMSServerMBean instance.
Must contain a weblogic.management.configuration.JMSServerMBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSServers/{name}/JMSMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSMessageLogFileMBean entity.
This resource manages the create forms for the JMSSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.JMSSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the JMSSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.JMSSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResourceCreateForm 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.JMSSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=JMSResource
This resource's JMSResource singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.JMSSystemResourceMBean instance.
Must contain a weblogic.management.configuration.JMSSystemResourceMBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=SAFErrorHandlingCreateForm
The create form resource for this resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=SAFErrorHandlings
This resource's SAFErrorHandlings collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=SAFImportedDestinationCreateForm
The create form resource for this resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=SAFImportedDestinations
This resource's SAFImportedDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=SAFRemoteContextCreateForm
The create form resource for this resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=SAFRemoteContexts
This resource's SAFRemoteContexts collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=connectionFactories
This resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=connectionFactoryCreateForm
The create form resource for this resource's connectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=destinationKeyCreateForm
The create form resource for this resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=destinationKeys
This resource's destinationKeys collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=foreignServerCreateForm
The create form resource for this resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=foreignServers
This resource's foreignServers collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=queueCreateForm
The create form resource for this resource's queues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues rel=queues
This resource's queues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=quotaCreateForm
The create form resource for this resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=quotas
This resource's quotas collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=templateCreateForm
The create form resource for this resource's templates collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates rel=templates
This resource's templates collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=topicCreateForm
The create form resource for this resource's topics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics rel=topics
This resource's topics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=uniformDistributedQueueCreateForm
The create form resource for this resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=uniformDistributedQueues
This resource's uniformDistributedQueues collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=uniformDistributedTopicCreateForm
The create form resource for this resource's uniformDistributedTopics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=uniformDistributedTopics
This resource's uniformDistributedTopics collection resource.
Update this weblogic.j2ee.descriptor.wl.JMSBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=clientParams
This resource's clientParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=defaultDeliveryParams
This resource's defaultDeliveryParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=flowControlParams
This resource's flowControlParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=loadBalancingParams
This resource's loadBalancingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=securityParams
This resource's securityParams singleton resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=transactionParams
This resource's transactionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/clientParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ClientParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ClientParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/defaultDeliveryParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DefaultDeliveryParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/flowControlParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.FlowControlParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.FlowControlParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/loadBalancingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.LoadBalancingParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/securityParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SecurityParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SecurityParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name}/transactionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.TransactionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TransactionParamsBean entity.
This resource manages the create forms for the connectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the connectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.JMSConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/connectionFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the destinationKeys collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity populated with default values that can be customized then posted (using the POST method) to the destinationKeys collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.DestinationKeyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/destinationKeys rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.DestinationKeyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DestinationKeyBean entity.
This resource manages the create forms for the foreignServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignServerBean entity populated with default values that can be customized then posted (using the POST method) to the foreignServers collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignServerBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=JNDIProperties
This resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=JNDIPropertyCreateForm
The create form resource for this resource's JNDIProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=foreignConnectionFactories
This resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=foreignConnectionFactoryCreateForm
The create form resource for this resource's foreignConnectionFactories collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=foreignDestinationCreateForm
The create form resource for this resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=foreignDestinations
This resource's foreignDestinations collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignServerBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignServerBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactories/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This resource manages the create forms for the foreignConnectionFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity populated with default values that can be customized then posted (using the POST method) to the foreignConnectionFactories collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignConnectionFactoryBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignConnectionFactoryCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the foreignDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity populated with default values that can be customized then posted (using the POST method) to the foreignDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/foreignDestinations/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.ForeignDestinationBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ForeignDestinationBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.PropertyBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIProperties/{key} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.PropertyBean instance.
Must contain a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This resource manages the create forms for the JNDIProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.PropertyBean entity populated with default values that can be customized then posted (using the POST method) to the JNDIProperties collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.PropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name}/JNDIPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/foreignServers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the queues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QueueBean entity populated with default values that can be customized then posted (using the POST method) to the queues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/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.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.QueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QueueBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/queues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the quotas collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.QuotaBean entity populated with default values that can be customized then posted (using the POST method) to the quotas collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotaCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.QuotaBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/quotas/{name} rel=self
This resource.
Update this weblogic.j2ee.descriptor.wl.QuotaBean instance.
Must contain a weblogic.j2ee.descriptor.wl.QuotaBean entity.
This resource manages the create forms for the SAFErrorHandlings collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity populated with default values that can be customized then posted (using the POST method) to the SAFErrorHandlings collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlingCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFErrorHandlings rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFErrorHandlingBean entity.
This resource manages the create forms for the SAFImportedDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity populated with default values that can be customized then posted (using the POST method) to the SAFImportedDestinations collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=SAFQueueCreateForm
The create form resource for this resource's SAFQueues collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=SAFTopicCreateForm
The create form resource for this resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=SAFTopics
This resource's SAFTopics collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFImportedDestinationsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFQueueBean entity populated with default values that can be customized then posted (using the POST method) to the SAFQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.SAFQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFQueueBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFTopicBean entity populated with default values that can be customized then posted (using the POST method) to the SAFTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFImportedDestinations/{name}/SAFTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.SAFTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFTopicBean entity.
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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
This resource manages the create forms for the SAFRemoteContexts collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity populated with default values that can be customized then posted (using the POST method) to the SAFRemoteContexts collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContextCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=SAFLoginContext
This resource's SAFLoginContext singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFRemoteContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFRemoteContextBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name}/SAFLoginContext rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/SAFRemoteContexts/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.SAFLoginContextBean instance.
Must contain a weblogic.j2ee.descriptor.wl.SAFLoginContextBean entity.
This resource manages the create forms for the templates collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TemplateBean entity populated with default values that can be customized then posted (using the POST method) to the templates collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TemplateBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TemplateBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/findErrorDestination rel=action title=findErrorDestination
This resource's findErrorDestination action resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=groupParamCreateForm
The create form resource for this resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=groupParams
This resource's groupParams collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TemplateBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TemplateBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
The resource supports the following methods:
This resource manages the create forms for the groupParams collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.GroupParamsBean entity populated with default values that can be customized then posted (using the POST method) to the groupParams collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParamCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.GroupParamsBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/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.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/groupParams rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.j2ee.descriptor.wl.GroupParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.GroupParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/templates/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the topics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.TopicBean entity populated with default values that can be customized then posted (using the POST method) to the topics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.TopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics rel=self
This resource.
Add a new weblogic.j2ee.descriptor.wl.TopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/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.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.TopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/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}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/topics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the uniformDistributedQueues collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedQueues collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueueCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedQueueBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedQueues/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages the create forms for the uniformDistributedTopics collection resource.
The resource supports the following methods:
This resource returns a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity populated with default values that can be customized then posted (using the POST method) to the uniformDistributedTopics collection resource to create a new instance.
Contains a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopicCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance to this collection.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams rel=deliveryFailureParams
This resource's deliveryFailureParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=deliveryParamsOverrides
This resource's deliveryParamsOverrides singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=messageLoggingParams
This resource's messageLoggingParams singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=multicast
This resource's multicast singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=thresholds
This resource's thresholds singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=topicSubscriptionParams
This resource's topicSubscriptionParams singleton resource.
Update this weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean instance.
Must contain a weblogic.j2ee.descriptor.wl.UniformDistributedTopicBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryFailureParams/findSubDeploymentName rel=action title=findSubDeploymentName
This resource's findSubDeploymentName action resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryFailureParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/deliveryParamsOverrides rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean instance.
Must contain a weblogic.j2ee.descriptor.wl.DeliveryParamsOverridesBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/messageLoggingParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MessageLoggingParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/multicast rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.MulticastParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.MulticastParamsBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/thresholds rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.ThresholdParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.ThresholdParamsBean entity.
This resource manages a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
The resource supports the following methods:
Get this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Contains a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/JMSResource/uniformDistributedTopics/{name}/topicSubscriptionParams rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{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.
Update this weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean instance.
Must contain a weblogic.j2ee.descriptor.wl.TopicSubscriptionParamsBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeploymentCreateForm 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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/JMSSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/libraries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries rel=self
This resource.
The resource supports the following methods:
This resource is used to deploy libraries that are already on the admininstration server.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a weblogic.management.configuration.LibraryMBean entity.
To deploy a library, you must provide the name of the library, the path to the library, and the targets to which the library will be deployed.
Use the multi-part form to deploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
Upload a library from the client to the server then deploy it.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages a weblogic.management.configuration.LibraryMBean instance.
The resource supports the following methods:
Undeploy a library.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
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}/edit/resourceGroupTemplates/{name}/libraries/{name}/createPlan rel=action title=createPlan
This resource's createPlan action resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/redeploy rel=redeploy
This resource's redeploy resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.LibraryMBean instance.
Must contain a weblogic.management.configuration.LibraryMBean entity.
The resource supports the following methods:
Use the multi-part form to redeploy a library.
sourcePath: the deployment to upload (required)
model: JSONObject containing a LibraryMBean entity that contains the rest of the deployment information (required)
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeploymentCreateForm 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}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/libraries/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
This resource manages the create forms for the mailSessions collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MailSessionMBean entity populated with default values that can be customized then posted (using the POST method) to the mailSessions collection resource to create a new instance.
Contains a weblogic.management.configuration.MailSessionMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessionCreateForm 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}/edit/resourceGroupTemplates/{name}/mailSessions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessions rel=self
This resource.
Add a new weblogic.management.configuration.MailSessionMBean instance to this collection.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
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}/edit/resourceGroupTemplates/{name}/mailSessions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/mailSessions/{name} rel=self
This resource.
Update this weblogic.management.configuration.MailSessionMBean instance.
Must contain a weblogic.management.configuration.MailSessionMBean entity.
This resource manages the create forms for the managedExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServiceCreateForm 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}/edit/resourceGroupTemplates/{name}/managedExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
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}/edit/resourceGroupTemplates/{name}/managedExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedExecutorServiceMBean entity.
This resource manages the create forms for the managedScheduledExecutorServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the managedScheduledExecutorServices collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServiceCreateForm 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}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=self
This resource.
Add a new weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
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}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedScheduledExecutorServices/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedScheduledExecutorServiceMBean instance.
Must contain a weblogic.management.configuration.ManagedScheduledExecutorServiceMBean entity.
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}/edit/resourceGroupTemplates/{name}/managedThreadFactories rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactoryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactories rel=self
This resource.
Add a new weblogic.management.configuration.ManagedThreadFactoryMBean instance to this collection.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
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}/edit/resourceGroupTemplates/{name}/managedThreadFactories/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactories rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactories/{name} rel=self
This resource.
Update this weblogic.management.configuration.ManagedThreadFactoryMBean instance.
Must contain a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This resource manages the create forms for the managedThreadFactories collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ManagedThreadFactoryMBean entity populated with default values that can be customized then posted (using the POST method) to the managedThreadFactories collection resource to create a new instance.
Contains a weblogic.management.configuration.ManagedThreadFactoryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactoryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactories rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/managedThreadFactoryCreateForm rel=self
This resource.
This resource manages the create forms for the messagingBridges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MessagingBridgeMBean entity populated with default values that can be customized then posted (using the POST method) to the messagingBridges collection resource to create a new instance.
Contains a weblogic.management.configuration.MessagingBridgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridgeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridgeCreateForm 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}/edit/resourceGroupTemplates/{name}/messagingBridges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridgeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridges rel=self
This resource.
Add a new weblogic.management.configuration.MessagingBridgeMBean instance to this collection.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
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}/edit/resourceGroupTemplates/{name}/messagingBridges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/messagingBridges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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.
Update this weblogic.management.configuration.MessagingBridgeMBean instance.
Must contain a weblogic.management.configuration.MessagingBridgeMBean entity.
This resource manages the create forms for the osgiFrameworks collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.OsgiFrameworkMBean entity populated with default values that can be customized then posted (using the POST method) to the osgiFrameworks collection resource to create a new instance.
Contains a weblogic.management.configuration.OsgiFrameworkMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworkCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworks rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworkCreateForm 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}/edit/resourceGroupTemplates/{name}/osgiFrameworks rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworkCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworks rel=self
This resource.
Add a new weblogic.management.configuration.OsgiFrameworkMBean instance to this collection.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
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}/edit/resourceGroupTemplates/{name}/osgiFrameworks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworks rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/osgiFrameworks/{name} rel=self
This resource.
Update this weblogic.management.configuration.OsgiFrameworkMBean instance.
Must contain a weblogic.management.configuration.OsgiFrameworkMBean entity.
This resource manages the create forms for the SAFAgents collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgentCreateForm 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}/edit/resourceGroupTemplates/{name}/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents rel=self
This resource.
Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
Update this weblogic.management.configuration.SAFAgentMBean instance.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/SAFAgents/{name}/JMSSAFMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
This resource manages the create forms for the WLDFSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResourceCreateForm 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=harvestedTypeCreateForm
The create form resource for this resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This resource manages the create forms for the harvestedTypes collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=WLDFInstrumentationMonitorCreateForm
The create form resource for this resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=JMSNotificationCreateForm
The create form resource for this resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=JMXNotificationCreateForm
The create form resource for this resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=RESTNotificationCreateForm
The create form resource for this resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=SMTPNotificationCreateForm
The create form resource for this resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=SNMPNotificationCreateForm
The create form resource for this resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=actionCreateForm
The create form resource for this resource's actions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=heapDumpActionCreateForm
The create form resource for this resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=imageNotificationCreateForm
The create form resource for this resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=logActionCreateForm
The create form resource for this resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=scaleDownActionCreateForm
The create form resource for this resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=scaleUpActionCreateForm
The create form resource for this resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=scriptActionCreateForm
The create form resource for this resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=threadDumpActionCreateForm
The create form resource for this resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=watcheCreateForm
The create form resource for this resource's watches collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=watches
This resource's watches collection resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This resource manages the create forms for the actions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=arrayPropertyCreateForm
The create form resource for this resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=mapPropertyCreateForm
The create form resource for this resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This resource manages the create forms for the arrayProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form 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}/edit/resourceGroupTemplates/{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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the mapProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the heapDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This resource manages the create forms for the imageNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This resource manages the create forms for the JMSNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This resource manages the create forms for the JMXNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This resource manages the create forms for the logActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
The resource supports the following methods:
The resource supports the following methods:
This resource manages the create forms for the RESTNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This resource manages the create forms for the scaleDownActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This resource manages the create forms for the scaleUpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This resource manages the create forms for the scriptActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This resource manages the create forms for the SMTPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This resource manages the create forms for the SNMPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This resource manages the create forms for the threadDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This resource manages the create forms for the watches collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=schedule
This resource's schedule singleton resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/resourceGroupTemplates/{name}/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
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}/edit/resourceManagement rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagerCreateForm rel=resourceManagerCreateForm
The create form resource for this resource's resourceManagers collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers rel=resourceManagers
This resource's resourceManagers collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement rel=self
This resource.
Update this weblogic.management.configuration.ResourceManagementMBean instance.
Must contain a weblogic.management.configuration.ResourceManagementMBean entity.
This resource manages the create forms for the resourceManagers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResourceManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the resourceManagers collection resource to create a new instance.
Contains a weblogic.management.configuration.ResourceManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagerCreateForm 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}/edit/resourceManagement/resourceManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers rel=self
This resource.
Add a new weblogic.management.configuration.ResourceManagerMBean instance to this collection.
Must contain a weblogic.management.configuration.ResourceManagerMBean entity.
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}/edit/resourceManagement/resourceManagers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization rel=cpuUtilization
This resource's cpuUtilization singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilizationCreateForm rel=cpuUtilizationCreateForm
The create form resource for this resource's cpuUtilization optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen rel=fileOpen
This resource's fileOpen singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpenCreateForm rel=fileOpenCreateForm
The create form resource for this resource's fileOpen optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained rel=heapRetained
This resource's heapRetained singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetainedCreateForm rel=heapRetainedCreateForm
The create form resource for this resource's heapRetained optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/restartLoopProtection rel=restartLoopProtection
This resource's restartLoopProtection singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=self
This resource.
Update this weblogic.management.configuration.ResourceManagerMBean instance.
Must contain a weblogic.management.configuration.ResourceManagerMBean entity.
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}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilizationCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraintCreateForm rel=fairShareConstraintCreateForm
The create form resource for this resource's fairShareConstraint optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggerCreateForm rel=triggerCreateForm
The create form resource for this resource's triggers collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=triggers
This resource's triggers collection resource.
Update this weblogic.management.configuration.CpuUtilizationMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.CpuUtilizationMBean entity.
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}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraintCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraint rel=self
This resource.
Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FairShareConstraintMBean entity.
This resource manages the create forms for the fairShareConstraint optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/fairShareConstraintCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the triggers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggerCreateForm 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}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=self
This resource.
Add a new weblogic.management.configuration.TriggerMBean instance to this collection.
Must contain a weblogic.management.configuration.TriggerMBean entity.
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}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilization/triggers/{name} rel=self
This resource.
Update this weblogic.management.configuration.TriggerMBean instance.
Must contain a weblogic.management.configuration.TriggerMBean entity.
This resource manages the create forms for the cpuUtilization optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CpuUtilizationMBean entity populated with default values that can be customized then posted (using the POST method) to the cpuUtilization optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.CpuUtilizationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilizationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilizationCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/cpuUtilizationCreateForm 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}/edit/resourceManagement/resourceManagers/{name}/fileOpen rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpenCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggerCreateForm rel=triggerCreateForm
The create form resource for this resource's triggers collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=triggers
This resource's triggers collection resource.
Update this weblogic.management.configuration.FileOpenMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FileOpenMBean entity.
This resource manages the create forms for the triggers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggerCreateForm 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}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=self
This resource.
Add a new weblogic.management.configuration.TriggerMBean instance to this collection.
Must contain a weblogic.management.configuration.TriggerMBean entity.
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}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpen/triggers/{name} rel=self
This resource.
Update this weblogic.management.configuration.TriggerMBean instance.
Must contain a weblogic.management.configuration.TriggerMBean entity.
This resource manages the create forms for the fileOpen optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FileOpenMBean entity populated with default values that can be customized then posted (using the POST method) to the fileOpen optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FileOpenMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpenCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpenCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/fileOpenCreateForm 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}/edit/resourceManagement/resourceManagers/{name}/heapRetained rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetainedCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraint rel=fairShareConstraint
This resource's fairShareConstraint singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraintCreateForm rel=fairShareConstraintCreateForm
The create form resource for this resource's fairShareConstraint optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained rel=self
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggerCreateForm rel=triggerCreateForm
The create form resource for this resource's triggers collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=triggers
This resource's triggers collection resource.
Update this weblogic.management.configuration.HeapRetainedMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.HeapRetainedMBean entity.
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}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraint rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraintCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraint rel=self
This resource.
Update this weblogic.management.configuration.FairShareConstraintMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FairShareConstraintMBean entity.
This resource manages the create forms for the fairShareConstraint optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareConstraint optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FairShareConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/fairShareConstraintCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the triggers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.TriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the triggers collection resource to create a new instance.
Contains a weblogic.management.configuration.TriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggerCreateForm 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}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=self
This resource.
Add a new weblogic.management.configuration.TriggerMBean instance to this collection.
Must contain a weblogic.management.configuration.TriggerMBean entity.
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}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetained/triggers/{name} rel=self
This resource.
Update this weblogic.management.configuration.TriggerMBean instance.
Must contain a weblogic.management.configuration.TriggerMBean entity.
This resource manages the create forms for the heapRetained optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.HeapRetainedMBean entity populated with default values that can be customized then posted (using the POST method) to the heapRetained optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.HeapRetainedMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetainedCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetainedCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/heapRetainedCreateForm 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}/edit/resourceManagement/resourceManagers/{name}/restartLoopProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/resourceManagement/resourceManagers/{name}/restartLoopProtection rel=self
This resource.
Update this weblogic.management.configuration.RestartLoopProtectionMBean instance.
Must contain a weblogic.management.configuration.RestartLoopProtectionMBean entity.
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}/edit/restfulManagementServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/restfulManagementServices rel=self
This resource.
Update this weblogic.management.configuration.RestfulManagementServicesMBean instance.
Must contain a weblogic.management.configuration.RestfulManagementServicesMBean entity.
This resource manages the create forms for the SAFAgents collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SAFAgentMBean entity populated with default values that can be customized then posted (using the POST method) to the SAFAgents collection resource to create a new instance.
Contains a weblogic.management.configuration.SAFAgentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SAFAgentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SAFAgents rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SAFAgentCreateForm 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}/edit/SAFAgents rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SAFAgentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SAFAgents rel=self
This resource.
Add a new weblogic.management.configuration.SAFAgentMBean instance to this collection.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/SAFAgents/{name}/JMSSAFMessageLogFile rel=JMSSAFMessageLogFile
This resource's JMSSAFMessageLogFile singleton resource.
uri=/management/weblogic/{version}/edit/SAFAgents/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SAFAgents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SAFAgents/{name} rel=self
This resource.
rel=store
This resource's store reference to a weblogic.management.configuration.PersistentStoreMBean resource.
Update this weblogic.management.configuration.SAFAgentMBean instance.
Must contain a weblogic.management.configuration.SAFAgentMBean entity.
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}/edit/SAFAgents/{name}/JMSSAFMessageLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SAFAgents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SAFAgents/{name}/JMSSAFMessageLogFile rel=self
This resource.
Update this weblogic.management.configuration.JMSSAFMessageLogFileMBean instance.
Must contain a weblogic.management.configuration.JMSSAFMessageLogFileMBean entity.
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}/edit/securityConfiguration/JASPIC rel=JASPIC
This resource's JASPIC singleton resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realmCreateForm rel=realmCreateForm
The create form resource for this resource's realms collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms rel=realms
This resource's realms collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/secureMode rel=secureMode
This resource's secureMode singleton resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=self
This resource.
Update this weblogic.management.configuration.SecurityConfigurationMBean instance.
Must contain a weblogic.management.configuration.SecurityConfigurationMBean entity.
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}/edit/securityConfiguration/certRevoc rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCaCreateForm rel=certRevocCaCreateForm
The create form resource for this resource's certRevocCas collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCas rel=certRevocCas
This resource's certRevocCas collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc rel=self
This resource.
Update this weblogic.management.configuration.CertRevocMBean instance.
Must contain a weblogic.management.configuration.CertRevocMBean entity.
This resource manages the create forms for the certRevocCas collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CertRevocCaMBean entity populated with default values that can be customized then posted (using the POST method) to the certRevocCas collection resource to create a new instance.
Contains a weblogic.management.configuration.CertRevocCaMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCaCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCas rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCaCreateForm 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}/edit/securityConfiguration/certRevoc/certRevocCas rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCaCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCas rel=self
This resource.
Add a new weblogic.management.configuration.CertRevocCaMBean instance to this collection.
Must contain a weblogic.management.configuration.CertRevocCaMBean entity.
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}/edit/securityConfiguration/certRevoc/certRevocCas/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCas rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/certRevoc/certRevocCas/{name} rel=self
This resource.
Update this weblogic.management.configuration.CertRevocCaMBean instance.
Must contain a weblogic.management.configuration.CertRevocCaMBean entity.
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}/edit/securityConfiguration/JASPIC/authConfigProviderCreateForm rel=authConfigProviderCreateForm
The create form resource for this resource's authConfigProviders collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviders rel=authConfigProviders
This resource's authConfigProviders collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC rel=self
This resource.
Update this weblogic.management.configuration.JASPICMBean instance.
Must contain a weblogic.management.configuration.JASPICMBean entity.
This resource manages the create forms for the authConfigProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.AuthConfigProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the authConfigProviders collection resource to create a new instance.
Contains a weblogic.management.configuration.AuthConfigProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviderCreateForm 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}/edit/securityConfiguration/JASPIC/authConfigProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviders rel=self
This resource.
Add a new weblogic.management.configuration.AuthConfigProviderMBean instance to this collection.
Must contain a weblogic.management.configuration.AuthConfigProviderMBean entity.
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}/edit/securityConfiguration/JASPIC/authConfigProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/JASPIC/authConfigProviders/{name} rel=self
This resource.
Update this weblogic.management.configuration.AuthConfigProviderMBean instance.
Must contain a weblogic.management.configuration.AuthConfigProviderMBean entity.
This resource manages the create forms for the realms collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.RealmMBean entity populated with default values that can be customized then posted (using the POST method) to the realms collection resource to create a new instance.
Contains a weblogic.management.security.RealmMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realmCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realmCreateForm 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}/edit/securityConfiguration/realms rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realmCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms rel=self
This resource.
Add a new weblogic.management.security.RealmMBean instance to this collection.
Must contain a weblogic.management.security.RealmMBean entity.
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}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStore rel=RDBMSSecurityStore
This resource's RDBMSSecurityStore singleton resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStoreCreateForm rel=RDBMSSecurityStoreCreateForm
The create form resource for this resource's RDBMSSecurityStore optional singleton resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicator rel=adjudicator
This resource's adjudicator singleton resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicatorCreateForm rel=adjudicatorCreateForm
The create form resource for this resource's adjudicator optional singleton resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditorCreateForm rel=auditorCreateForm
The create form resource for this resource's auditors collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditors rel=auditors
This resource's auditors collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviderCreateForm rel=authenticationProviderCreateForm
The create form resource for this resource's authenticationProviders collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviders rel=authenticationProviders
This resource's authenticationProviders collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizerCreateForm rel=authorizerCreateForm
The create form resource for this resource's authorizers collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizers rel=authorizers
This resource's authorizers collection resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/certPathProviderCreateForm rel=certPathProviderCreateForm
The create form resource for this resource's certPathProviders collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviders rel=certPathProviders
This resource's certPathProviders collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMapperCreateForm rel=credentialMapperCreateForm
The create form resource for this resource's credentialMappers collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMappers rel=credentialMappers
This resource's credentialMappers collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidatorCreateForm rel=passwordValidatorCreateForm
The create form resource for this resource's passwordValidators collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidators rel=passwordValidators
This resource's passwordValidators collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMapperCreateForm rel=roleMapperCreateForm
The create form resource for this resource's roleMappers collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMappers rel=roleMappers
This resource's roleMappers collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/userLockoutManager rel=userLockoutManager
This resource's userLockoutManager singleton resource.
Update this weblogic.management.security.RealmMBean instance.
Must contain a weblogic.management.security.RealmMBean entity.
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}/edit/securityConfiguration/realms/{name}/adjudicator rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicatorCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/adjudicator rel=self
This resource.
This resource manages the create forms for the adjudicator optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.security.authorization.AdjudicatorMBean entity populated with default values that can be customized then posted (using the POST method) to the adjudicator optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.security.authorization.AdjudicatorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicatorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicatorCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/adjudicatorCreateForm rel=self
This resource.
This resource manages the create forms for the auditors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.audit.AuditorMBean entity populated with default values that can be customized then posted (using the POST method) to the auditors collection resource to create a new instance.
Contains a weblogic.management.security.audit.AuditorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditorCreateForm 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}/edit/securityConfiguration/realms/{name}/auditors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/auditors rel=self
This resource.
Add a new weblogic.management.security.audit.AuditorMBean instance to this collection.
Must contain a weblogic.management.security.audit.AuditorMBean entity.
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}/edit/securityConfiguration/realms/{name}/auditors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/auditors/{name} rel=self
This resource.
This resource manages the create forms for the authenticationProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.authentication.AuthenticationProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the authenticationProviders collection resource to create a new instance.
Contains a weblogic.management.security.authentication.AuthenticationProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviderCreateForm 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}/edit/securityConfiguration/realms/{name}/authenticationProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authenticationProviders rel=self
This resource.
Add a new weblogic.management.security.authentication.AuthenticationProviderMBean instance to this collection.
Must contain a weblogic.management.security.authentication.AuthenticationProviderMBean entity.
This resource manages a weblogic.management.security.authentication.AuthenticationProviderMBean instance.
The resource supports the following methods:
Delete this weblogic.management.security.authentication.AuthenticationProviderMBean instance.
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}/edit/securityConfiguration/realms/{name}/authenticationProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/authenticationProviders/{name} rel=self
This resource.
This resource manages the create forms for the authorizers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.authorization.AuthorizerMBean entity populated with default values that can be customized then posted (using the POST method) to the authorizers collection resource to create a new instance.
Contains a weblogic.management.security.authorization.AuthorizerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizerCreateForm 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}/edit/securityConfiguration/realms/{name}/authorizers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/authorizers rel=self
This resource.
Add a new weblogic.management.security.authorization.AuthorizerMBean instance to this collection.
Must contain a weblogic.management.security.authorization.AuthorizerMBean entity.
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}/edit/securityConfiguration/realms/{name}/authorizers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/authorizers/{name} rel=self
This resource.
This resource manages the create forms for the certPathProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.pk.CertPathProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the certPathProviders collection resource to create a new instance.
Contains a weblogic.management.security.pk.CertPathProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviderCreateForm 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}/edit/securityConfiguration/realms/{name}/certPathProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/certPathProviders rel=self
This resource.
Add a new weblogic.management.security.pk.CertPathProviderMBean instance to this collection.
Must contain a weblogic.management.security.pk.CertPathProviderMBean entity.
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}/edit/securityConfiguration/realms/{name}/certPathProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/certPathProviders/{name} rel=self
This resource.
This resource manages the create forms for the credentialMappers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.credentials.CredentialMapperMBean entity populated with default values that can be customized then posted (using the POST method) to the credentialMappers collection resource to create a new instance.
Contains a weblogic.management.security.credentials.CredentialMapperMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMapperCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMappers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMapperCreateForm 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}/edit/securityConfiguration/realms/{name}/credentialMappers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMapperCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/credentialMappers rel=self
This resource.
Add a new weblogic.management.security.credentials.CredentialMapperMBean instance to this collection.
Must contain a weblogic.management.security.credentials.CredentialMapperMBean entity.
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}/edit/securityConfiguration/realms/{name}/credentialMappers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/credentialMappers/{name} rel=self
This resource.
This resource manages the create forms for the passwordValidators collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.authentication.PasswordValidatorMBean entity populated with default values that can be customized then posted (using the POST method) to the passwordValidators collection resource to create a new instance.
Contains a weblogic.management.security.authentication.PasswordValidatorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidatorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidators rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidatorCreateForm 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}/edit/securityConfiguration/realms/{name}/passwordValidators rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidatorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/passwordValidators rel=self
This resource.
Add a new weblogic.management.security.authentication.PasswordValidatorMBean instance to this collection.
Must contain a weblogic.management.security.authentication.PasswordValidatorMBean entity.
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}/edit/securityConfiguration/realms/{name}/passwordValidators/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/passwordValidators/{name} rel=self
This resource.
This resource manages a weblogic.management.security.RDBMSSecurityStoreMBean instance.
The resource supports the following methods:
Delete this weblogic.management.security.RDBMSSecurityStoreMBean instance.
This example uses the DELETE method to remove a weblogic.management.security.RDBMSSecurityStoreMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X DELETE http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore
Example Response
HTTP/1.1 200 OK Response Body: {}
Get this weblogic.management.security.RDBMSSecurityStoreMBean instance.
Contains a weblogic.management.security.RDBMSSecurityStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStore rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStoreCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStore rel=self
This resource.
This example uses the GET method to view this weblogic.management.security.RDBMSSecurityStoreMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm" }, { "rel": "realm", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore" }, { "rel": "create-form", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm" } ], "identity": [ "securityConfiguration", "realms", "myrealm", "RDBMSSecurityStore" ], "connectionProperties": null, "JMSTopicConnectionFactory": null, "password": null, "JMSTopic": null, "JNDIPassword": null, "name": "MyRDBMSSecurityStore", "JMSExceptionReconnectAttempts": 0, "connectionURL": "MyConnectionUrl", "driverName": "MyDriverName", "JNDIUsername": null, "notificationProperties": null, "username": "MyUserName", "realm": [ "securityConfiguration", "realms", "myrealm" ] }
Update this weblogic.management.security.RDBMSSecurityStoreMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.security.RDBMSSecurityStoreMBean entity.
This example uses the POST method to create a weblogic.management.security.RDBMSSecurityStoreMBean optional singleton instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ name: 'MyRDBMSSecurityStore', connectionURL: 'MyConnectionUrl', driverName: 'MyDriverName', username: 'MyUserName' }" \ -X POST http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore
Example Response
HTTP/1.1 201 Created Location: http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore Response Body: {}
This example uses the POST method to update a weblogic.management.security.RDBMSSecurityStoreMBean optional singleton instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ driverName: 'YourDriverName', username: 'YourUserName' }" \ -X POST http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore
Example Response
HTTP/1.1 200 OK Response Body: {}
This resource manages the create forms for the RDBMSSecurityStore optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.security.RDBMSSecurityStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the RDBMSSecurityStore optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.security.RDBMSSecurityStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStoreCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/RDBMSSecurityStoreCreateForm rel=self
This resource.
This example uses the GET method to retrieve a pre-populated weblogic.management.security.RDBMSSecurityStoreMBean entity that can be modified and posted (using the POST method) to corresponding singleton to create a new weblogic.management.security.RDBMSSecurityStoreMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStoreCreateForm" }, { "rel": "create", "href": "http:\//localhost:7001/management/weblogic/latest/edit/securityConfiguration/realms/myrealm/RDBMSSecurityStore" } ], "connectionProperties": null, "JMSTopicConnectionFactory": null, "password": null, "JMSTopic": null, "JNDIPassword": null, "JMSExceptionReconnectAttempts": 0, "connectionURL": null, "driverName": null, "JNDIUsername": null, "notificationProperties": null, "username": null, "name": null }
This resource manages the create forms for the roleMappers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.security.authorization.RoleMapperMBean entity populated with default values that can be customized then posted (using the POST method) to the roleMappers collection resource to create a new instance.
Contains a weblogic.management.security.authorization.RoleMapperMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMapperCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMappers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMapperCreateForm 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}/edit/securityConfiguration/realms/{name}/roleMappers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMapperCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/realms/{name}/roleMappers rel=self
This resource.
Add a new weblogic.management.security.authorization.RoleMapperMBean instance to this collection.
Must contain a weblogic.management.security.authorization.RoleMapperMBean entity.
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}/edit/securityConfiguration/realms/{name}/roleMappers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/securityConfiguration/realms/{name}/userLockoutManager rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/securityConfiguration/realms/{name}/userLockoutManager rel=self
This resource.
Update this weblogic.management.security.authentication.UserLockoutManagerMBean instance.
Must contain a weblogic.management.security.authentication.UserLockoutManagerMBean entity.
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}/edit/securityConfiguration/secureMode rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/securityConfiguration rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/securityConfiguration/secureMode rel=self
This resource.
Update this weblogic.management.configuration.SecureModeMBean instance.
Must contain a weblogic.management.configuration.SecureModeMBean entity.
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}/edit/selfTuning rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacities rel=capacities
This resource's capacities collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacityCreateForm rel=capacityCreateForm
The create form resource for this resource's capacities collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClassCreateForm rel=contextRequestClassCreateForm
The create form resource for this resource's contextRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses rel=contextRequestClasses
This resource's contextRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClassCreateForm rel=fairShareRequestClassCreateForm
The create form resource for this resource's fairShareRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClasses rel=fairShareRequestClasses
This resource's fairShareRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraintCreateForm rel=maxThreadsConstraintCreateForm
The create form resource for this resource's maxThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraints rel=maxThreadsConstraints
This resource's maxThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraintCreateForm rel=minThreadsConstraintCreateForm
The create form resource for this resource's minThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraints rel=minThreadsConstraints
This resource's minThreadsConstraints collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClassCreateForm rel=responseTimeRequestClassCreateForm
The create form resource for this resource's responseTimeRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClasses rel=responseTimeRequestClasses
This resource's responseTimeRequestClasses collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=self
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagerCreateForm rel=workManagerCreateForm
The create form resource for this resource's workManagers collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers rel=workManagers
This resource's workManagers collection resource.
Update this weblogic.management.configuration.SelfTuningMBean instance.
Must contain a weblogic.management.configuration.SelfTuningMBean entity.
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}/edit/selfTuning/capacities rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacityCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacities rel=self
This resource.
Add a new weblogic.management.configuration.CapacityMBean instance to this collection.
Must contain a weblogic.management.configuration.CapacityMBean entity.
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}/edit/selfTuning/capacities/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacities rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacities/{name} rel=self
This resource.
Update this weblogic.management.configuration.CapacityMBean instance.
Must contain a weblogic.management.configuration.CapacityMBean entity.
This resource manages the create forms for the capacities collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.CapacityMBean entity populated with default values that can be customized then posted (using the POST method) to the capacities collection resource to create a new instance.
Contains a weblogic.management.configuration.CapacityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/capacityCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacities rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/capacityCreateForm rel=self
This resource.
This resource manages the create forms for the contextRequestClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ContextRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the contextRequestClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.ContextRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClassCreateForm 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}/edit/selfTuning/contextRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses rel=self
This resource.
Add a new weblogic.management.configuration.ContextRequestClassMBean instance to this collection.
Must contain a weblogic.management.configuration.ContextRequestClassMBean entity.
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}/edit/selfTuning/contextRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm rel=contextCaseCreateForm
The create form resource for this resource's contextCases collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases rel=contextCases
This resource's contextCases collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.ContextRequestClassMBean instance.
Must contain a weblogic.management.configuration.ContextRequestClassMBean entity.
This resource manages the create forms for the contextCases collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ContextCaseMBean entity populated with default values that can be customized then posted (using the POST method) to the contextCases collection resource to create a new instance.
Contains a weblogic.management.configuration.ContextCaseMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm 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}/edit/selfTuning/contextRequestClasses/{name}/contextCases rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCaseCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases rel=self
This resource.
Add a new weblogic.management.configuration.ContextCaseMBean instance to this collection.
Must contain a weblogic.management.configuration.ContextCaseMBean entity.
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}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=fairShareRequestClass
This resource's fairShareRequestClass singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm rel=fairShareRequestClassCreateForm
The create form resource for this resource's fairShareRequestClass optional singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=responseTimeRequestClass
This resource's responseTimeRequestClass singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm rel=responseTimeRequestClassCreateForm
The create form resource for this resource's responseTimeRequestClass optional singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=self
This resource.
Update this weblogic.management.configuration.ContextCaseMBean instance.
Must contain a weblogic.management.configuration.ContextCaseMBean entity.
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}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClass rel=self
This resource.
Update this weblogic.management.configuration.FairShareRequestClassMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.FairShareRequestClassMBean entity.
This resource manages the create forms for the fairShareRequestClass optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClass optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/fairShareRequestClassCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/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}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClass rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ResponseTimeRequestClassMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This resource manages the create forms for the responseTimeRequestClass optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClass optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name}/responseTimeRequestClassCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning/contextRequestClasses/{name}/contextCases/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the fairShareRequestClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.FairShareRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the fairShareRequestClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.FairShareRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClassCreateForm rel=self
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}/edit/selfTuning/fairShareRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClasses rel=self
This resource.
Add a new weblogic.management.configuration.FairShareRequestClassMBean instance to this collection.
Must contain a weblogic.management.configuration.FairShareRequestClassMBean entity.
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}/edit/selfTuning/fairShareRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/fairShareRequestClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.FairShareRequestClassMBean instance.
Must contain a weblogic.management.configuration.FairShareRequestClassMBean entity.
This resource manages the create forms for the maxThreadsConstraints collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MaxThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the maxThreadsConstraints collection resource to create a new instance.
Contains a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraints rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraintCreateForm 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}/edit/selfTuning/maxThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraintCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraints rel=self
This resource.
Add a new weblogic.management.configuration.MaxThreadsConstraintMBean instance to this collection.
Must contain a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
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}/edit/selfTuning/maxThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/maxThreadsConstraints/{name} rel=self
This resource.
Update this weblogic.management.configuration.MaxThreadsConstraintMBean instance.
Must contain a weblogic.management.configuration.MaxThreadsConstraintMBean entity.
This resource manages the create forms for the minThreadsConstraints collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.MinThreadsConstraintMBean entity populated with default values that can be customized then posted (using the POST method) to the minThreadsConstraints collection resource to create a new instance.
Contains a weblogic.management.configuration.MinThreadsConstraintMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraintCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraints rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraintCreateForm 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}/edit/selfTuning/minThreadsConstraints rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraintCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraints rel=self
This resource.
Add a new weblogic.management.configuration.MinThreadsConstraintMBean instance to this collection.
Must contain a weblogic.management.configuration.MinThreadsConstraintMBean entity.
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}/edit/selfTuning/minThreadsConstraints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/minThreadsConstraints/{name} rel=self
This resource.
Update this weblogic.management.configuration.MinThreadsConstraintMBean instance.
Must contain a weblogic.management.configuration.MinThreadsConstraintMBean entity.
This resource manages the create forms for the responseTimeRequestClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ResponseTimeRequestClassMBean entity populated with default values that can be customized then posted (using the POST method) to the responseTimeRequestClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClassCreateForm 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}/edit/selfTuning/responseTimeRequestClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClasses rel=self
This resource.
Add a new weblogic.management.configuration.ResponseTimeRequestClassMBean instance to this collection.
Must contain a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
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}/edit/selfTuning/responseTimeRequestClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/responseTimeRequestClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.ResponseTimeRequestClassMBean instance.
Must contain a weblogic.management.configuration.ResponseTimeRequestClassMBean entity.
This resource manages the create forms for the workManagers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WorkManagerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagers collection resource to create a new instance.
Contains a weblogic.management.configuration.WorkManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/workManagerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagerCreateForm 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}/edit/selfTuning/workManagers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/selfTuning rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers rel=self
This resource.
Add a new weblogic.management.configuration.WorkManagerMBean instance to this collection.
Must contain a weblogic.management.configuration.WorkManagerMBean entity.
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}/edit/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}/edit/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}/edit/selfTuning/workManagers/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=workManagerShutdownTrigger
This resource's workManagerShutdownTrigger singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=workManagerShutdownTriggerCreateForm
The create form resource for this resource's workManagerShutdownTrigger optional singleton resource.
Update this weblogic.management.configuration.WorkManagerMBean instance.
Must contain a weblogic.management.configuration.WorkManagerMBean entity.
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}/edit/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTrigger rel=self
This resource.
Update this weblogic.management.configuration.WorkManagerShutdownTriggerMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity.
This resource manages the create forms for the workManagerShutdownTrigger optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the workManagerShutdownTrigger optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.WorkManagerShutdownTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/selfTuning/workManagers/{name}/workManagerShutdownTriggerCreateForm rel=self
This resource.
This resource manages the create forms for the servers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ServerMBean entity populated with default values that can be customized then posted (using the POST method) to the servers collection resource to create a new instance.
Contains a weblogic.management.configuration.ServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverCreateForm rel=self
This resource.
This example uses the GET method to retrieve a pre-populated weblogic.management.configuration.ServerMBean entity that can be modified and posted (using the POST method) to the corresponding collection to create a new weblogic.management.configuration.ServerMBean instance in the collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/edit/serverCreateForm
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic/latest/edit" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/serverCreateForm" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/latest/edit/serverCreateForm" }, { "rel": "create", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers" } ], "maxOpenSockCount": -1, "interfaceAddress": null, "startupTimeout": 0, "idleConnectionTimeout": 65, "resolveDNSName": false, "ignoreSessionsDuringShutdown": false, "adminReconnectIntervalSeconds": 10, "preferredSecondaryGroup": null, "defaultSecureProtocol": "t3s", "maxMessageSize": 10000000, "stagingDirectoryName": null, "outboundPrivateKeyEnabled": false, "defaultTGIOPPassword": null, "httpTraceSupportEnabled": false, "classpathServletSecureModeEnabled": false, "tags": null, "useEnhancedIncrementAdvisor": true, "completeMessageTimeout": 60, "managedServerIndependenceEnabled": true, "isolatePartitionThreadLocals": false, "retryIntervalBeforeMSIMode": 5, "nativeIOEnabled": true, "startupMode": "RUNNING", "externalDNSName": null, "JMSConnectionFactoryUnmappedResRefMode": "ReturnDefault", "extraEjbcOptions": null, "autoMigrationEnabled": false, "tunnelingClientPingSecs": 45, "instrumentStackTraceEnabled": true, "customIdentityKeyStorePassPhrase": null, "gracefulShutdownTimeout": 0, "outboundEnabled": false, "javaStandardTrustKeyStorePassPhrase": null, "buzzAddress": null, "classpathServletDisabled": false, "healthCheckStartDelaySeconds": 120, "clientCertProxyEnabled": false, "defaultInternalServletsDisabled": false, "customIdentityKeyStoreType": null, "restartIntervalSeconds": 3600, "notes": null, "serverLifeCycleTimeoutVal": 30, "httpdEnabled": true, "javaCompilerPostClassPath": null, "buzzPort": 0, "keyStores": "DemoIdentityAndDemoTrust", "defaultTGIOPUser": "guest", "use81StyleExecuteQueues": false, "uploadDirectoryName": null, "tunnelingClientTimeoutSecs": 40, "listenThreadStartDelaySecs": 60, "tunnelingEnabled": false, "listenAddress": null, "acceptBacklog": 300, "listenPortEnabled": true, "eagerThreadLocalCleanup": false, "connectTimeout": 0, "printStackTraceInProduction": false, "useFusionForLLR": false, "clusterWeight": 100, "customTrustKeyStorePassPhrase": null, "restartDelaySeconds": 0, "transactionLogFilePrefix": ".\/", "maxConcurrentLongRunningRequests": 100, "customTrustKeyStoreFileName": null, "socketReaders": -1, "threadPoolPercentSocketReaders": 33, "JDBCLoginTimeoutSeconds": 0, "customTrustKeyStoreType": null, "loginTimeoutMillis": 5000, "messageIdPrefixEnabled": true, "healthCheckIntervalSeconds": 180, "useEnhancedPriorityQueueForRequestManager": false, "reverseDNSAllowed": false, "periodLength": 60000, "socketBufferSizeAsChunkSize": false, "JDBCLLRTableName": null, "buzzEnabled": false, "weblogicPluginEnabled": false, "useDetailedThreadName": false, "stuckThreadTimerInterval": 60, "TGIOPEnabled": true, "listenersBindEarly": false, "JNDITransportableObjectFactoryList": null, "NMSocketCreateTimeoutInMillis": 180000, "DGCIdlePeriodsUntilTimeout": 5, "defaultIIOPUser": null, "logRemoteExceptionsEnabled": false, "transactionLogFileWritePolicy": "Direct-Write", "defaultProtocol": "t3", "replicationPorts": null, "autoRestart": true, "extraRmicOptions": null, "customIdentityKeyStoreFileName": null, "restartMax": 2, "replicationGroup": null, "defaultIIOPPassword": null, "IIOPEnabled": true, "maxConcurrentNewThreads": 100, "numOfRetriesBeforeMSIMode": 3, "JMSDefaultConnectionFactoriesEnabled": true, "sitConfigPollingInterval": 5, "allowShrinkingPriorityRequestQueue": true, "COMEnabled": false, "javaCompilerPreClassPath": null, "idlePeriodsUntilTimeout": 4, "listenPort": 7001, "javaCompiler": "javac", "cluster": null, "reliableDeliveryPolicy": null, "machine": null, "XMLEntityCache": null, "XMLRegistry": null, "coherenceClusterSystemResource": null, "serverTemplate": null, "candidateMachines": [], "name": null }
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}/edit/servers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers rel=self
This resource.
This example uses the GET method to display the weblogic.management.configuration.ServerMBean instances in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/edit/servers?fields=name,listenPort,listenAddress,listenPortEnabled,machine,candidateMachines&links=self
Example Response
HTTP/1.1 200 OK Response Body: { "links": [{ "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers" }], "items": [ { "links": [{ "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer" }], "listenAddress": "localhost", "listenPortEnabled": true, "name": "AdminServer", "listenPort": 7001, "machine": null, "candidateMachines": [] }, { "links": [{ "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/server1" }], "listenAddress": "lhost", "listenPortEnabled": true, "name": "server1", "listenPort": 7777, "machine": [ "machines", "machine1" ], "candidateMachines": [ {"identity": [ "machines", "machine1" ]}, {"identity": [ "machines", "machine2" ]} ] } ] }
Add a new weblogic.management.configuration.ServerMBean instance to this collection.
Must contain a weblogic.management.configuration.ServerMBean entity.
This example uses the POST method to create a new weblogic.management.configuration.ServerMBean instance in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ name: 'server1', listenPort: 7654, listenAddress: 'lhost' }" \ -X POST http://localhost:7001/management/weblogic/latest/edit/servers
Example Response
HTTP/1.1 201 Created Location: http://localhost:7001/management/weblogic/latest/edit/servers/server1 Response Body: {}
This resource manages a weblogic.management.configuration.ServerMBean instance.
The resource supports the following methods:
Delete this weblogic.management.configuration.ServerMBean instance.
This example uses the DELETE method to remove a weblogic.management.configuration.ServerMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X DELETE http://localhost:7001/management/weblogic/latest/edit/servers/server1
Example Response
HTTP/1.1 200 OK Response Body: {}
Get this weblogic.management.configuration.ServerMBean instance.
Contains a weblogic.management.configuration.ServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/IIOP rel=IIOP
This resource's IIOP singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/JTAMigratableTarget rel=JTAMigratableTarget
This resource's JTAMigratableTarget singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/servers/{name}/coherenceMemberConfig rel=coherenceMemberConfig
This resource's coherenceMemberConfig singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationPropertyCreateForm rel=configurationPropertyCreateForm
The create form resource for this resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/dataSource rel=dataSource
This resource's dataSource singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/defaultFileStore rel=defaultFileStore
This resource's defaultFileStore singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/executeQueues rel=executeQueues
This resource's executeQueues collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/federationServices rel=federationServices
This resource's federationServices singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/servers/{name}/networkAccessPointCreateForm rel=networkAccessPointCreateForm
The create form resource for this resource's networkAccessPoints collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPoints rel=networkAccessPoints
This resource's networkAccessPoints collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection rel=overloadProtection
This resource's overloadProtection singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/servers/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug rel=serverDebug
This resource's serverDebug singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig rel=serverDiagnosticConfig
This resource's serverDiagnosticConfig singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/servers/{name}/singleSignOnServices rel=singleSignOnServices
This resource's singleSignOnServices singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/transactionLogJDBCStore rel=transactionLogJDBCStore
This resource's transactionLogJDBCStore singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webServer rel=webServer
This resource's webServer singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService rel=webService
This resource's webService singleton resource.
This example uses the GET method to view this weblogic.management.configuration.ServerMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/edit/servers/server1?fields=name,listenPort,listenAddress,listenPortEnabled,machine,candidateMachines&links=self
Example Response
HTTP/1.1 200 OK Response Body: { "links": [{ "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/server1" }], "listenAddress": "lhost", "listenPortEnabled": true, "name": "server1", "listenPort": 7777, "machine": [ "machines", "machine1" ], "candidateMachines": [ {"identity": [ "machines", "machine1" ]}, {"identity": [ "machines", "machine2" ]} ] }
Update this weblogic.management.configuration.ServerMBean instance.
Must contain a weblogic.management.configuration.ServerMBean entity.
This example uses the POST method to update this weblogic.management.configuration.ServerMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ listenPort: 7777, machine: [ 'machines', 'machine1' ], candidateMachines: [ { identity: [ 'machines', 'machine1' ] }, { identity: [ 'machines', 'machine2' ] } ] }" \ -X POST http://localhost:7001/management/weblogic/latest/edit/servers/server1
Example Response
HTTP/1.1 200 OK Response Body: {}
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}/edit/servers/{name}/coherenceMemberConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/coherenceMemberConfig rel=self
This resource.
Update this weblogic.management.configuration.CoherenceMemberConfigMBean instance.
Must contain a weblogic.management.configuration.CoherenceMemberConfigMBean entity.
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}/edit/servers/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationProperties rel=self
This resource.
Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
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}/edit/servers/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationProperties/{name} rel=self
This resource.
Update this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This resource manages the create forms for the configurationProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/configurationPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/configurationPropertyCreateForm 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}/edit/servers/{name}/dataSource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/dataSource/dataSourceLogFile rel=dataSourceLogFile
This resource's dataSourceLogFile singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/dataSource rel=self
This resource.
Update this weblogic.management.configuration.DataSourceMBean instance.
Must contain a weblogic.management.configuration.DataSourceMBean entity.
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}/edit/servers/{name}/dataSource/dataSourceLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/dataSource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/dataSource/dataSourceLogFile rel=self
This resource.
Update this weblogic.management.configuration.DataSourceLogFileMBean instance.
Must contain a weblogic.management.configuration.DataSourceLogFileMBean entity.
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}/edit/servers/{name}/defaultFileStore rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/defaultFileStore rel=self
This resource.
Update this weblogic.management.configuration.DefaultFileStoreMBean instance.
Must contain a weblogic.management.configuration.DefaultFileStoreMBean entity.
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}/edit/servers/{name}/executeQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/servers/{name}/executeQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/executeQueues rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/executeQueues/{name} rel=self
This resource.
Update this weblogic.management.configuration.ExecuteQueueMBean instance.
Must contain a weblogic.management.configuration.ExecuteQueueMBean entity.
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}/edit/servers/{name}/federationServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/federationServices rel=self
This resource.
Update this weblogic.management.configuration.FederationServicesMBean instance.
Must contain a weblogic.management.configuration.FederationServicesMBean entity.
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}/edit/servers/{name}/IIOP rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/IIOP rel=self
This resource.
Update this weblogic.management.configuration.IIOPMBean instance.
Must contain a weblogic.management.configuration.IIOPMBean entity.
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}/edit/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}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/JTAMigratableTarget rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
Update this weblogic.management.configuration.JTAMigratableTargetMBean instance.
Must contain a weblogic.management.configuration.JTAMigratableTargetMBean entity.
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}/edit/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}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/log rel=self
This resource.
rel=stdoutFilter
This resource's stdoutFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
Update this weblogic.management.configuration.LogMBean instance.
Must contain a weblogic.management.configuration.LogMBean entity.
This resource manages the create forms for the networkAccessPoints collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.NetworkAccessPointMBean entity populated with default values that can be customized then posted (using the POST method) to the networkAccessPoints collection resource to create a new instance.
Contains a weblogic.management.configuration.NetworkAccessPointMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPointCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPoints rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPointCreateForm rel=self
This 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}/edit/servers/{name}/networkAccessPoints rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPointCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPoints rel=self
This resource.
Add a new weblogic.management.configuration.NetworkAccessPointMBean instance to this collection.
Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.
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}/edit/servers/{name}/networkAccessPoints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPoints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/networkAccessPoints/{name} rel=self
This resource.
Update this weblogic.management.configuration.NetworkAccessPointMBean instance.
Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.
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}/edit/servers/{name}/overloadProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection rel=self
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTrigger rel=serverFailureTrigger
This resource's serverFailureTrigger singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTriggerCreateForm rel=serverFailureTriggerCreateForm
The create form resource for this resource's serverFailureTrigger optional singleton resource.
Update this weblogic.management.configuration.OverloadProtectionMBean instance.
Must contain a weblogic.management.configuration.OverloadProtectionMBean entity.
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}/edit/servers/{name}/overloadProtection/serverFailureTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTriggerCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTrigger rel=self
This resource.
Update this weblogic.management.configuration.ServerFailureTriggerMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This resource manages the create forms for the serverFailureTrigger optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ServerFailureTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the serverFailureTrigger optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTriggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTriggerCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/overloadProtection/serverFailureTriggerCreateForm 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}/edit/servers/{name}/serverDebug rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopeCreateForm rel=debugScopeCreateForm
The create form resource for this resource's debugScopes collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopes rel=debugScopes
This resource's debugScopes collection resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug rel=self
This resource.
rel=server
This resource's server reference to a weblogic.management.configuration.ServerMBean resource.
Update this weblogic.management.configuration.ServerDebugMBean instance.
Must contain a weblogic.management.configuration.ServerDebugMBean entity.
This resource manages the create forms for the debugScopes collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.DebugScopeMBean entity populated with default values that can be customized then posted (using the POST method) to the debugScopes collection resource to create a new instance.
Contains a weblogic.management.configuration.DebugScopeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopes rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopeCreateForm rel=self
This 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}/edit/servers/{name}/serverDebug/debugScopes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopes rel=self
This resource.
Add a new weblogic.management.configuration.DebugScopeMBean instance to this collection.
Must contain a weblogic.management.configuration.DebugScopeMBean entity.
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}/edit/servers/{name}/serverDebug/debugScopes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopes rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDebug/debugScopes/{name} rel=self
This resource.
Update this weblogic.management.configuration.DebugScopeMBean instance.
Must contain a weblogic.management.configuration.DebugScopeMBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=WLDFBuiltinSystemResourceDescriptorBean
This resource's WLDFBuiltinSystemResourceDescriptorBean singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=WLDFDataRetirementByAgeCreateForm
The create form resource for this resource's WLDFDataRetirementByAges collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=WLDFDataRetirementByAges
This resource's WLDFDataRetirementByAges collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement rel=action title=lookupWLDFDataRetirement
This resource's lookupWLDFDataRetirement action resource.
uri=/management/weblogic/{version}/edit/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}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig rel=self
This resource.
Update this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.
Must contain a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=self
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm rel=harvestedTypeCreateForm
The create form resource for this resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This resource manages the create forms for the harvestedTypes collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitorCreateForm rel=WLDFInstrumentationMonitorCreateForm
The create form resource for this resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotificationCreateForm rel=JMSNotificationCreateForm
The create form resource for this resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotificationCreateForm rel=JMXNotificationCreateForm
The create form resource for this resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotificationCreateForm rel=RESTNotificationCreateForm
The create form resource for this resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotificationCreateForm rel=SMTPNotificationCreateForm
The create form resource for this resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotificationCreateForm rel=SNMPNotificationCreateForm
The create form resource for this resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm rel=actionCreateForm
The create form resource for this resource's actions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActionCreateForm rel=heapDumpActionCreateForm
The create form resource for this resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotificationCreateForm rel=imageNotificationCreateForm
The create form resource for this resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm rel=logActionCreateForm
The create form resource for this resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActionCreateForm rel=scaleDownActionCreateForm
The create form resource for this resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActionCreateForm rel=scaleUpActionCreateForm
The create form resource for this resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm rel=scriptActionCreateForm
The create form resource for this resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActionCreateForm rel=threadDumpActionCreateForm
The create form resource for this resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm rel=watcheCreateForm
The create form resource for this resource's watches collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches rel=watches
This resource's watches collection resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This resource manages the create forms for the actions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayPropertyCreateForm rel=arrayPropertyCreateForm
The create form resource for this resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapPropertyCreateForm rel=mapPropertyCreateForm
The create form resource for this resource's mapProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This resource manages the create forms for the arrayProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the mapProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the heapDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This resource manages the create forms for the imageNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This resource manages the create forms for the JMSNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This resource manages the create forms for the JMXNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This resource manages the create forms for the logActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
The resource supports the following methods:
The resource supports the following methods:
This resource manages the create forms for the RESTNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This resource manages the create forms for the scaleDownActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This resource manages the create forms for the scaleUpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This resource manages the create forms for the scriptActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This resource manages the create forms for the SMTPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This resource manages the create forms for the SNMPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotificationCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This resource manages the create forms for the threadDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This resource manages the create forms for the watches collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification 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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/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.
Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches/{name}/schedule rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This resource manages the create forms for the WLDFDataRetirementByAges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFDataRetirementByAges collection resource to create a new instance.
Contains a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=self
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=self
This resource.
Add a new weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance to this collection.
Must contain a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
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}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name} rel=self
This resource.
Update this weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.
Must contain a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
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}/edit/servers/{name}/serverStart rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/serverStart rel=self
This resource.
Update this weblogic.management.configuration.ServerStartMBean instance.
Must contain a weblogic.management.configuration.ServerStartMBean entity.
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}/edit/servers/{name}/singleSignOnServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/singleSignOnServices rel=self
This resource.
Update this weblogic.management.configuration.SingleSignOnServicesMBean instance.
Must contain a weblogic.management.configuration.SingleSignOnServicesMBean entity.
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}/edit/servers/{name}/SSL rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/SSL rel=self
This resource.
This example uses the GET method to view this weblogic.management.configuration.SSLMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/edit/servers/AdminServer/SSL
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer/SSL" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/latest/edit/servers/AdminServer/SSL" } ], "identity": [ "servers", "AdminServer", "SSL" ], "hostnameVerificationIgnored": false, "notes": null, "outboundPrivateKeyPassPhrase": null, "identityAndTrustLocations": "KeyStores", "serverPrivateKeyAlias": null, "hostnameVerifier": null, "clientCertAlias": null, "type": "SSL", "inboundCertificateValidation": "BuiltinSSLValidationOnly", "enabled": false, "serverPrivateKeyPassPhrase": null, "SSLRejectionLoggingEnabled": true, "clientCertPrivateKeyPassPhrase": null, "allowUnencryptedNullCipher": false, "id": 0, "dynamicallyCreated": false, "outboundPrivateKeyAlias": null, "SSLv2HelloEnabled": true, "exportKeyLifespan": 500, "acceptKSSDemoCertsEnabled": true, "twoWaySSLEnabled": false, "ciphersuites": [], "tags": [], "outboundCertificateValidation": "BuiltinSSLValidationOnly", "JSSEEnabled": true, "clientCertificateEnforced": false, "loginTimeoutMillis": 25000, "useServerCerts": false, "useClientCertForOutbound": false, "clientInitSecureRenegotiationAccepted": false, "minimumTLSProtocolVersion": null, "name": "AdminServer", "listenPort": 7002 }
Update this weblogic.management.configuration.SSLMBean instance.
Must contain a weblogic.management.configuration.SSLMBean entity.
This example uses the POST method to update this weblogic.management.configuration.SSLMBean instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ loginTimeoutMillis: 23456 }" \ -X POST http://localhost:7001/management/weblogic/latest/edit/servers/AdminServer/SSL
Example Response
HTTP/1.1 200 OK Response Body: {}
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}/edit/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}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/transactionLogJDBCStore rel=self
This resource.
Update this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.
Must contain a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.
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}/edit/servers/{name}/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webServer rel=self
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
Update this weblogic.management.configuration.WebServerMBean instance.
Must contain a weblogic.management.configuration.WebServerMBean entity.
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}/edit/servers/{name}/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webServer/webServerLog rel=self
This resource.
Update this weblogic.management.configuration.WebServerLogMBean instance.
Must contain a weblogic.management.configuration.WebServerLogMBean entity.
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}/edit/servers/{name}/webService rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService rel=self
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering rel=webServiceBuffering
This resource's webServiceBuffering singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence rel=webServicePersistence
This resource's webServicePersistence singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceReliability rel=webServiceReliability
This resource's webServiceReliability singleton resource.
Update this weblogic.management.configuration.WebServiceMBean instance.
Must contain a weblogic.management.configuration.WebServiceMBean entity.
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}/edit/servers/{name}/webService/webServiceBuffering rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering rel=self
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=webServiceRequestBufferingQueue
This resource's webServiceRequestBufferingQueue singleton resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=webServiceResponseBufferingQueue
This resource's webServiceResponseBufferingQueue singleton resource.
Update this weblogic.management.configuration.WebServiceBufferingMBean instance.
Must contain a weblogic.management.configuration.WebServiceBufferingMBean entity.
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}/edit/servers/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=self
This resource.
Update this weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
Must contain a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean entity.
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}/edit/servers/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=self
This resource.
Update this weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
Must contain a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean entity.
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}/edit/servers/{name}/webService/webServicePersistence rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence rel=self
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=webServiceLogicalStoreCreateForm
The create form resource for this resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=webServiceLogicalStores
This resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=webServicePhysicalStoreCreateForm
The create form resource for this resource's webServicePhysicalStores collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=webServicePhysicalStores
This resource's webServicePhysicalStores collection resource.
Update this weblogic.management.configuration.WebServicePersistenceMBean instance.
Must contain a weblogic.management.configuration.WebServicePersistenceMBean entity.
This resource manages the create forms for the webServiceLogicalStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebServiceLogicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServiceLogicalStores collection resource to create a new instance.
Contains a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=self
This 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}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=self
This resource.
Add a new weblogic.management.configuration.WebServiceLogicalStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
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}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
Must contain a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This resource manages the create forms for the webServicePhysicalStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebServicePhysicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServicePhysicalStores collection resource to create a new instance.
Contains a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=self
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}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=self
This resource.
Add a new weblogic.management.configuration.WebServicePhysicalStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
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}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServicePersistence/webServicePhysicalStores/{name} rel=self
This resource.
Update this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
Must contain a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
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}/edit/servers/{name}/webService/webServiceReliability rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/servers/{name}/webService/webServiceReliability rel=self
This resource.
Update this weblogic.management.configuration.WebServiceReliabilityMBean instance.
Must contain a weblogic.management.configuration.WebServiceReliabilityMBean entity.
This resource manages the create forms for the serverTemplates collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ServerTemplateMBean entity populated with default values that can be customized then posted (using the POST method) to the serverTemplates collection resource to create a new instance.
Contains a weblogic.management.configuration.ServerTemplateMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplateCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplateCreateForm 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}/edit/serverTemplates rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplateCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates rel=self
This resource.
Add a new weblogic.management.configuration.ServerTemplateMBean instance to this collection.
Must contain a weblogic.management.configuration.ServerTemplateMBean entity.
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}/edit/serverTemplates/{name}/IIOP rel=IIOP
This resource's IIOP singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/JTAMigratableTarget rel=JTAMigratableTarget
This resource's JTAMigratableTarget singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/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}/edit/serverTemplates/{name}/coherenceMemberConfig rel=coherenceMemberConfig
This resource's coherenceMemberConfig singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationPropertyCreateForm rel=configurationPropertyCreateForm
The create form resource for this resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/dataSource rel=dataSource
This resource's dataSource singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/defaultFileStore rel=defaultFileStore
This resource's defaultFileStore singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/executeQueues rel=executeQueues
This resource's executeQueues collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/federationServices rel=federationServices
This resource's federationServices singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/serverTemplates/{name}/networkAccessPointCreateForm rel=networkAccessPointCreateForm
The create form resource for this resource's networkAccessPoints collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPoints rel=networkAccessPoints
This resource's networkAccessPoints collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection rel=overloadProtection
This resource's overloadProtection singleton resource.
uri=/management/weblogic/{version}/edit/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}/edit/serverTemplates/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug rel=serverDebug
This resource's serverDebug singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig rel=serverDiagnosticConfig
This resource's serverDiagnosticConfig singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverStart rel=serverStart
This resource's serverStart singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/singleSignOnServices rel=singleSignOnServices
This resource's singleSignOnServices singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/transactionLogJDBCStore rel=transactionLogJDBCStore
This resource's transactionLogJDBCStore singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webServer rel=webServer
This resource's webServer singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService rel=webService
This resource's webService singleton resource.
Update this weblogic.management.configuration.ServerTemplateMBean instance.
Must contain a weblogic.management.configuration.ServerTemplateMBean entity.
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}/edit/serverTemplates/{name}/coherenceMemberConfig rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/coherenceMemberConfig rel=self
This resource.
Update this weblogic.management.configuration.CoherenceMemberConfigMBean instance.
Must contain a weblogic.management.configuration.CoherenceMemberConfigMBean entity.
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}/edit/serverTemplates/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationProperties rel=self
This resource.
Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
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}/edit/serverTemplates/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationProperties/{name} rel=self
This resource.
Update this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This resource manages the create forms for the configurationProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/configurationPropertyCreateForm 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}/edit/serverTemplates/{name}/dataSource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/dataSource/dataSourceLogFile rel=dataSourceLogFile
This resource's dataSourceLogFile singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/dataSource rel=self
This resource.
Update this weblogic.management.configuration.DataSourceMBean instance.
Must contain a weblogic.management.configuration.DataSourceMBean entity.
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}/edit/serverTemplates/{name}/dataSource/dataSourceLogFile rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/dataSource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/dataSource/dataSourceLogFile rel=self
This resource.
Update this weblogic.management.configuration.DataSourceLogFileMBean instance.
Must contain a weblogic.management.configuration.DataSourceLogFileMBean entity.
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}/edit/serverTemplates/{name}/defaultFileStore rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/defaultFileStore rel=self
This resource.
Update this weblogic.management.configuration.DefaultFileStoreMBean instance.
Must contain a weblogic.management.configuration.DefaultFileStoreMBean entity.
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}/edit/serverTemplates/{name}/executeQueues rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/serverTemplates/{name}/executeQueues/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/executeQueues rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/executeQueues/{name} rel=self
This resource.
Update this weblogic.management.configuration.ExecuteQueueMBean instance.
Must contain a weblogic.management.configuration.ExecuteQueueMBean entity.
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}/edit/serverTemplates/{name}/federationServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/federationServices rel=self
This resource.
Update this weblogic.management.configuration.FederationServicesMBean instance.
Must contain a weblogic.management.configuration.FederationServicesMBean entity.
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}/edit/serverTemplates/{name}/IIOP rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/IIOP rel=self
This resource.
Update this weblogic.management.configuration.IIOPMBean instance.
Must contain a weblogic.management.configuration.IIOPMBean entity.
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}/edit/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}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/JTAMigratableTarget rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
Update this weblogic.management.configuration.JTAMigratableTargetMBean instance.
Must contain a weblogic.management.configuration.JTAMigratableTargetMBean entity.
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}/edit/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}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/log rel=self
This resource.
rel=stdoutFilter
This resource's stdoutFilter reference to a weblogic.management.configuration.LogFilterMBean resource.
Update this weblogic.management.configuration.LogMBean instance.
Must contain a weblogic.management.configuration.LogMBean entity.
This resource manages the create forms for the networkAccessPoints collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.NetworkAccessPointMBean entity populated with default values that can be customized then posted (using the POST method) to the networkAccessPoints collection resource to create a new instance.
Contains a weblogic.management.configuration.NetworkAccessPointMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPointCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPoints rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPointCreateForm rel=self
This 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}/edit/serverTemplates/{name}/networkAccessPoints rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPointCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPoints rel=self
This resource.
Add a new weblogic.management.configuration.NetworkAccessPointMBean instance to this collection.
Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.
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}/edit/serverTemplates/{name}/networkAccessPoints/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPoints rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/networkAccessPoints/{name} rel=self
This resource.
Update this weblogic.management.configuration.NetworkAccessPointMBean instance.
Must contain a weblogic.management.configuration.NetworkAccessPointMBean entity.
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}/edit/serverTemplates/{name}/overloadProtection rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection rel=self
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTrigger rel=serverFailureTrigger
This resource's serverFailureTrigger singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTriggerCreateForm rel=serverFailureTriggerCreateForm
The create form resource for this resource's serverFailureTrigger optional singleton resource.
Update this weblogic.management.configuration.OverloadProtectionMBean instance.
Must contain a weblogic.management.configuration.OverloadProtectionMBean entity.
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}/edit/serverTemplates/{name}/overloadProtection/serverFailureTrigger rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTriggerCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTrigger rel=self
This resource.
Update this weblogic.management.configuration.ServerFailureTriggerMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This resource manages the create forms for the serverFailureTrigger optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ServerFailureTriggerMBean entity populated with default values that can be customized then posted (using the POST method) to the serverFailureTrigger optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.ServerFailureTriggerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTriggerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTriggerCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/overloadProtection/serverFailureTriggerCreateForm 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}/edit/serverTemplates/{name}/serverDebug rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopeCreateForm rel=debugScopeCreateForm
The create form resource for this resource's debugScopes collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopes rel=debugScopes
This resource's debugScopes collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug rel=self
This resource.
rel=server
This resource's server reference to a weblogic.management.configuration.ServerMBean resource.
Update this weblogic.management.configuration.ServerDebugMBean instance.
Must contain a weblogic.management.configuration.ServerDebugMBean entity.
This resource manages the create forms for the debugScopes collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.DebugScopeMBean entity populated with default values that can be customized then posted (using the POST method) to the debugScopes collection resource to create a new instance.
Contains a weblogic.management.configuration.DebugScopeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopes rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopeCreateForm rel=self
This 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}/edit/serverTemplates/{name}/serverDebug/debugScopes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopes rel=self
This resource.
Add a new weblogic.management.configuration.DebugScopeMBean instance to this collection.
Must contain a weblogic.management.configuration.DebugScopeMBean entity.
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}/edit/serverTemplates/{name}/serverDebug/debugScopes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopes rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDebug/debugScopes/{name} rel=self
This resource.
Update this weblogic.management.configuration.DebugScopeMBean instance.
Must contain a weblogic.management.configuration.DebugScopeMBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=WLDFBuiltinSystemResourceDescriptorBean
This resource's WLDFBuiltinSystemResourceDescriptorBean singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=WLDFDataRetirementByAgeCreateForm
The create form resource for this resource's WLDFDataRetirementByAges collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=WLDFDataRetirementByAges
This resource's WLDFDataRetirementByAges collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/lookupWLDFDataRetirement rel=action title=lookupWLDFDataRetirement
This resource's lookupWLDFDataRetirement action resource.
uri=/management/weblogic/{version}/edit/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}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig rel=self
This resource.
Update this weblogic.management.configuration.WLDFServerDiagnosticMBean instance.
Must contain a weblogic.management.configuration.WLDFServerDiagnosticMBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm rel=harvestedTypeCreateForm
The create form resource for this resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This resource manages the create forms for the harvestedTypes collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/harvester/harvestedTypes/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitorCreateForm rel=WLDFInstrumentationMonitorCreateForm
The create form resource for this resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
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.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/instrumentation/WLDFInstrumentationMonitorCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotificationCreateForm rel=JMSNotificationCreateForm
The create form resource for this resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotificationCreateForm rel=JMXNotificationCreateForm
The create form resource for this resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotificationCreateForm rel=RESTNotificationCreateForm
The create form resource for this resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotificationCreateForm rel=SMTPNotificationCreateForm
The create form resource for this resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotificationCreateForm rel=SNMPNotificationCreateForm
The create form resource for this resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm rel=actionCreateForm
The create form resource for this resource's actions collection resource.
This resource's actions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActionCreateForm rel=heapDumpActionCreateForm
The create form resource for this resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotificationCreateForm rel=imageNotificationCreateForm
The create form resource for this resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm rel=logActionCreateForm
The create form resource for this resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActionCreateForm rel=scaleDownActionCreateForm
The create form resource for this resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActionCreateForm rel=scaleUpActionCreateForm
The create form resource for this resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm rel=scriptActionCreateForm
The create form resource for this resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActionCreateForm rel=threadDumpActionCreateForm
The create form resource for this resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm rel=watcheCreateForm
The create form resource for this resource's watches collection resource.
This resource's watches collection resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This resource manages the create forms for the actions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actionCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayPropertyCreateForm rel=arrayPropertyCreateForm
The create form resource for this resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapPropertyCreateForm rel=mapPropertyCreateForm
The create form resource for this resource's mapProperties collection resource.
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/arrayPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This resource manages the create forms for the arrayProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapPropertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
The parent resource of this resource.
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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 create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the mapProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/actions/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
This resource manages the create forms for the heapDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This resource manages the create forms for the imageNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/imageNotificationCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This resource manages the create forms for the JMSNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMSNotificationCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This resource manages the create forms for the JMXNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/JMXNotificationCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This resource manages the create forms for the logActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm rel=canonical
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActionCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/logActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
The resource supports the following methods:
The resource supports the following methods:
This resource manages the create forms for the RESTNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
This resource.
The collection resource for this create form resource.
The parent resource of this resource.
This resource.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/RESTNotificationCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This resource manages the create forms for the scaleDownActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleDownActionCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This resource manages the create forms for the scaleUpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActionCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This resource manages the create forms for the scriptActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm rel=canonical
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActionCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/scriptActions/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This resource manages the create forms for the SMTPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SMTPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This resource manages the create forms for the SNMPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/SNMPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This resource manages the create forms for the threadDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/threadDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This resource manages the create forms for the watches collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm rel=canonical
This resource.
The collection resource for this create form 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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFBuiltinSystemResourceDescriptorBean/watchNotification/watcheCreateForm rel=create-form
The create form resource for this collection resource.
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/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.
Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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.
Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
This resource manages the create forms for the WLDFDataRetirementByAges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFDataRetirementByAges collection resource to create a new instance.
Contains a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=self
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAgeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=self
This resource.
Add a new weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance to this collection.
Must contain a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
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}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverDiagnosticConfig/WLDFDataRetirementByAges/{name} rel=self
This resource.
Update this weblogic.management.configuration.WLDFDataRetirementByAgeMBean instance.
Must contain a weblogic.management.configuration.WLDFDataRetirementByAgeMBean entity.
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}/edit/serverTemplates/{name}/serverStart rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/serverStart rel=self
This resource.
Update this weblogic.management.configuration.ServerStartMBean instance.
Must contain a weblogic.management.configuration.ServerStartMBean entity.
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}/edit/serverTemplates/{name}/singleSignOnServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/singleSignOnServices rel=self
This resource.
Update this weblogic.management.configuration.SingleSignOnServicesMBean instance.
Must contain a weblogic.management.configuration.SingleSignOnServicesMBean entity.
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}/edit/serverTemplates/{name}/SSL rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/SSL rel=self
This resource.
Update this weblogic.management.configuration.SSLMBean instance.
Must contain a weblogic.management.configuration.SSLMBean entity.
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}/edit/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}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/transactionLogJDBCStore rel=self
This resource.
Update this weblogic.management.configuration.TransactionLogJDBCStoreMBean instance.
Must contain a weblogic.management.configuration.TransactionLogJDBCStoreMBean entity.
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}/edit/serverTemplates/{name}/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webServer rel=self
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
Update this weblogic.management.configuration.WebServerMBean instance.
Must contain a weblogic.management.configuration.WebServerMBean entity.
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}/edit/serverTemplates/{name}/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webServer/webServerLog rel=self
This resource.
Update this weblogic.management.configuration.WebServerLogMBean instance.
Must contain a weblogic.management.configuration.WebServerLogMBean entity.
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}/edit/serverTemplates/{name}/webService rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService rel=self
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering rel=webServiceBuffering
This resource's webServiceBuffering singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence rel=webServicePersistence
This resource's webServicePersistence singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceReliability rel=webServiceReliability
This resource's webServiceReliability singleton resource.
Update this weblogic.management.configuration.WebServiceMBean instance.
Must contain a weblogic.management.configuration.WebServiceMBean entity.
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}/edit/serverTemplates/{name}/webService/webServiceBuffering rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering rel=self
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=webServiceRequestBufferingQueue
This resource's webServiceRequestBufferingQueue singleton resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=webServiceResponseBufferingQueue
This resource's webServiceResponseBufferingQueue singleton resource.
Update this weblogic.management.configuration.WebServiceBufferingMBean instance.
Must contain a weblogic.management.configuration.WebServiceBufferingMBean entity.
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}/edit/serverTemplates/{name}/webService/webServiceBuffering/webServiceRequestBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.WebServiceRequestBufferingQueueMBean instance.
Must contain a weblogic.management.configuration.WebServiceRequestBufferingQueueMBean entity.
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}/edit/serverTemplates/{name}/webService/webServiceBuffering/webServiceResponseBufferingQueue rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceBuffering rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.WebServiceResponseBufferingQueueMBean instance.
Must contain a weblogic.management.configuration.WebServiceResponseBufferingQueueMBean entity.
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}/edit/serverTemplates/{name}/webService/webServicePersistence rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence rel=self
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=webServiceLogicalStoreCreateForm
The create form resource for this resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=webServiceLogicalStores
This resource's webServiceLogicalStores collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=webServicePhysicalStoreCreateForm
The create form resource for this resource's webServicePhysicalStores collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=webServicePhysicalStores
This resource's webServicePhysicalStores collection resource.
Update this weblogic.management.configuration.WebServicePersistenceMBean instance.
Must contain a weblogic.management.configuration.WebServicePersistenceMBean entity.
This resource manages the create forms for the webServiceLogicalStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebServiceLogicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServiceLogicalStores collection resource to create a new instance.
Contains a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
This 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}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=self
This resource.
Add a new weblogic.management.configuration.WebServiceLogicalStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
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}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServiceLogicalStores rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.WebServiceLogicalStoreMBean instance.
Must contain a weblogic.management.configuration.WebServiceLogicalStoreMBean entity.
This resource manages the create forms for the webServicePhysicalStores collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebServicePhysicalStoreMBean entity populated with default values that can be customized then posted (using the POST method) to the webServicePhysicalStores collection resource to create a new instance.
Contains a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence 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}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStoreCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=self
This resource.
Add a new weblogic.management.configuration.WebServicePhysicalStoreMBean instance to this collection.
Must contain a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
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}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServicePersistence/webServicePhysicalStores rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.WebServicePhysicalStoreMBean instance.
Must contain a weblogic.management.configuration.WebServicePhysicalStoreMBean entity.
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}/edit/serverTemplates/{name}/webService/webServiceReliability rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/serverTemplates/{name}/webService/webServiceReliability rel=self
This resource.
Update this weblogic.management.configuration.WebServiceReliabilityMBean instance.
Must contain a weblogic.management.configuration.WebServiceReliabilityMBean entity.
This resource manages the create forms for the shutdownClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ShutdownClassMBean entity populated with default values that can be customized then posted (using the POST method) to the shutdownClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.ShutdownClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/shutdownClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/shutdownClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/shutdownClassCreateForm 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}/edit/shutdownClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/shutdownClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/shutdownClasses rel=self
This resource.
Add a new weblogic.management.configuration.ShutdownClassMBean instance to this collection.
Must contain a weblogic.management.configuration.ShutdownClassMBean entity.
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}/edit/shutdownClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/shutdownClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/shutdownClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.ShutdownClassMBean instance.
Must contain a weblogic.management.configuration.ShutdownClassMBean entity.
This resource manages the create forms for the singletonServices collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SingletonServiceMBean entity populated with default values that can be customized then posted (using the POST method) to the singletonServices collection resource to create a new instance.
Contains a weblogic.management.configuration.SingletonServiceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/singletonServiceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/singletonServices rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/singletonServiceCreateForm 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}/edit/singletonServices rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/singletonServiceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/singletonServices rel=self
This resource.
Add a new weblogic.management.configuration.SingletonServiceMBean instance to this collection.
Must contain a weblogic.management.configuration.SingletonServiceMBean entity.
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}/edit/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}/edit/singletonServices rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/singletonServices/{name} rel=self
This resource.
rel=userPreferredServer
This resource's userPreferredServer reference to a weblogic.management.configuration.ServerMBean resource.
Update this weblogic.management.configuration.SingletonServiceMBean instance.
Must contain a weblogic.management.configuration.SingletonServiceMBean entity.
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}/edit/SNMPAgent/SNMPAttributeChangeCreateForm rel=SNMPAttributeChangeCreateForm
The create form resource for this resource's SNMPAttributeChanges collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChanges rel=SNMPAttributeChanges
This resource's SNMPAttributeChanges collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitorCreateForm rel=SNMPCounterMonitorCreateForm
The create form resource for this resource's SNMPCounterMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitors rel=SNMPCounterMonitors
This resource's SNMPCounterMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitorCreateForm rel=SNMPGaugeMonitorCreateForm
The create form resource for this resource's SNMPGaugeMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitors rel=SNMPGaugeMonitors
This resource's SNMPGaugeMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilterCreateForm rel=SNMPLogFilterCreateForm
The create form resource for this resource's SNMPLogFilters collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilters rel=SNMPLogFilters
This resource's SNMPLogFilters collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxies rel=SNMPProxies
This resource's SNMPProxies collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxyCreateForm rel=SNMPProxyCreateForm
The create form resource for this resource's SNMPProxies collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitorCreateForm rel=SNMPStringMonitorCreateForm
The create form resource for this resource's SNMPStringMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitors rel=SNMPStringMonitors
This resource's SNMPStringMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinationCreateForm rel=SNMPTrapDestinationCreateForm
The create form resource for this resource's SNMPTrapDestinations collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinations rel=SNMPTrapDestinations
This resource's SNMPTrapDestinations collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=self
This resource.
Update this weblogic.management.configuration.SNMPAgentMBean instance.
Must contain a weblogic.management.configuration.SNMPAgentMBean entity.
This resource manages the create forms for the SNMPAttributeChanges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPAttributeChangeMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPAttributeChanges collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChangeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChanges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChangeCreateForm 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}/edit/SNMPAgent/SNMPAttributeChanges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChangeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChanges rel=self
This resource.
Add a new weblogic.management.configuration.SNMPAttributeChangeMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
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}/edit/SNMPAgent/SNMPAttributeChanges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChanges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPAttributeChanges/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPAttributeChangeMBean instance.
Must contain a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
This resource manages the create forms for the SNMPCounterMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPCounterMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPCounterMonitors collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitorCreateForm 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}/edit/SNMPAgent/SNMPCounterMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitors rel=self
This resource.
Add a new weblogic.management.configuration.SNMPCounterMonitorMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
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}/edit/SNMPAgent/SNMPCounterMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPCounterMonitors/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPCounterMonitorMBean instance.
Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
This resource manages the create forms for the SNMPGaugeMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPGaugeMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPGaugeMonitors collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitorCreateForm 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}/edit/SNMPAgent/SNMPGaugeMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitors rel=self
This resource.
Add a new weblogic.management.configuration.SNMPGaugeMonitorMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
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}/edit/SNMPAgent/SNMPGaugeMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPGaugeMonitors/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.
Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
This resource manages the create forms for the SNMPLogFilters collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPLogFilterMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPLogFilters collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilterCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilters rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilterCreateForm 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}/edit/SNMPAgent/SNMPLogFilters rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilterCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilters rel=self
This resource.
Add a new weblogic.management.configuration.SNMPLogFilterMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.
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}/edit/SNMPAgent/SNMPLogFilters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPLogFilters/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPLogFilterMBean instance.
Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.
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}/edit/SNMPAgent/SNMPProxies rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxies rel=self
This resource.
Add a new weblogic.management.configuration.SNMPProxyMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPProxyMBean entity.
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}/edit/SNMPAgent/SNMPProxies/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxies rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxies/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPProxyMBean instance.
Must contain a weblogic.management.configuration.SNMPProxyMBean entity.
This resource manages the create forms for the SNMPProxies collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPProxyMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPProxies collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPProxyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxies rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPProxyCreateForm rel=self
This resource.
This resource manages the create forms for the SNMPStringMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPStringMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPStringMonitors collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitorCreateForm 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}/edit/SNMPAgent/SNMPStringMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitors rel=self
This resource.
Add a new weblogic.management.configuration.SNMPStringMonitorMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.
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}/edit/SNMPAgent/SNMPStringMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPStringMonitors/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPStringMonitorMBean instance.
Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.
This resource manages the create forms for the SNMPTrapDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPTrapDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPTrapDestinations collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinationCreateForm 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}/edit/SNMPAgent/SNMPTrapDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgent rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinations rel=self
This resource.
Add a new weblogic.management.configuration.SNMPTrapDestinationMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
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}/edit/SNMPAgent/SNMPTrapDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgent/SNMPTrapDestinations/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPTrapDestinationMBean instance.
Must contain a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
This resource manages the create forms for the SNMPAgentDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPAgentDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPAgentDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPAgentDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeploymentCreateForm 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}/edit/SNMPAgentDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SNMPAgentDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPAgentDeploymentMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChangeCreateForm rel=SNMPAttributeChangeCreateForm
The create form resource for this resource's SNMPAttributeChanges collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=SNMPAttributeChanges
This resource's SNMPAttributeChanges collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitorCreateForm rel=SNMPCounterMonitorCreateForm
The create form resource for this resource's SNMPCounterMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=SNMPCounterMonitors
This resource's SNMPCounterMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitorCreateForm rel=SNMPGaugeMonitorCreateForm
The create form resource for this resource's SNMPGaugeMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=SNMPGaugeMonitors
This resource's SNMPGaugeMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilterCreateForm rel=SNMPLogFilterCreateForm
The create form resource for this resource's SNMPLogFilters collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters rel=SNMPLogFilters
This resource's SNMPLogFilters collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxies rel=SNMPProxies
This resource's SNMPProxies collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxyCreateForm rel=SNMPProxyCreateForm
The create form resource for this resource's SNMPProxies collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitorCreateForm rel=SNMPStringMonitorCreateForm
The create form resource for this resource's SNMPStringMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=SNMPStringMonitors
This resource's SNMPStringMonitors collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinationCreateForm rel=SNMPTrapDestinationCreateForm
The create form resource for this resource's SNMPTrapDestinations collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=SNMPTrapDestinations
This resource's SNMPTrapDestinations collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPAgentDeploymentMBean instance.
Must contain a weblogic.management.configuration.SNMPAgentDeploymentMBean entity.
This resource manages the create forms for the SNMPAttributeChanges collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPAttributeChangeMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPAttributeChanges collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChangeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChangeCreateForm 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}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChangeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=self
This resource.
Add a new weblogic.management.configuration.SNMPAttributeChangeMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPAttributeChanges/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPAttributeChangeMBean instance.
Must contain a weblogic.management.configuration.SNMPAttributeChangeMBean entity.
This resource manages the create forms for the SNMPCounterMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPCounterMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPCounterMonitors collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitorCreateForm 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}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=self
This resource.
Add a new weblogic.management.configuration.SNMPCounterMonitorMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPCounterMonitors/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPCounterMonitorMBean instance.
Must contain a weblogic.management.configuration.SNMPCounterMonitorMBean entity.
This resource manages the create forms for the SNMPGaugeMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPGaugeMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPGaugeMonitors collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitorCreateForm 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}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=self
This resource.
Add a new weblogic.management.configuration.SNMPGaugeMonitorMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPGaugeMonitors/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPGaugeMonitorMBean instance.
Must contain a weblogic.management.configuration.SNMPGaugeMonitorMBean entity.
This resource manages the create forms for the SNMPLogFilters collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPLogFilterMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPLogFilters collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPLogFilterMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilterCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilterCreateForm 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}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilterCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters rel=self
This resource.
Add a new weblogic.management.configuration.SNMPLogFilterMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPLogFilters/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPLogFilterMBean instance.
Must contain a weblogic.management.configuration.SNMPLogFilterMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPProxies rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxies rel=self
This resource.
Add a new weblogic.management.configuration.SNMPProxyMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPProxyMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPProxies/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxies rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxies/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPProxyMBean instance.
Must contain a weblogic.management.configuration.SNMPProxyMBean entity.
This resource manages the create forms for the SNMPProxies collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPProxyMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPProxies collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPProxyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxies rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPProxyCreateForm rel=self
This resource.
This resource manages the create forms for the SNMPStringMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPStringMonitorMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPStringMonitors collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPStringMonitorMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitorCreateForm 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}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=self
This resource.
Add a new weblogic.management.configuration.SNMPStringMonitorMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPStringMonitors/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPStringMonitorMBean instance.
Must contain a weblogic.management.configuration.SNMPStringMonitorMBean entity.
This resource manages the create forms for the SNMPTrapDestinations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SNMPTrapDestinationMBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPTrapDestinations collection resource to create a new instance.
Contains a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinationCreateForm 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}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=self
This resource.
Add a new weblogic.management.configuration.SNMPTrapDestinationMBean instance to this collection.
Must contain a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
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}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/SNMPAgentDeployments/{name}/SNMPTrapDestinations/{name} rel=self
This resource.
Update this weblogic.management.configuration.SNMPTrapDestinationMBean instance.
Must contain a weblogic.management.configuration.SNMPTrapDestinationMBean entity.
This resource manages the create forms for the startupClasses collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.StartupClassMBean entity populated with default values that can be customized then posted (using the POST method) to the startupClasses collection resource to create a new instance.
Contains a weblogic.management.configuration.StartupClassMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/startupClassCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/startupClasses rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/startupClassCreateForm 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}/edit/startupClasses rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/startupClassCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/startupClasses rel=self
This resource.
Add a new weblogic.management.configuration.StartupClassMBean instance to this collection.
Must contain a weblogic.management.configuration.StartupClassMBean entity.
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}/edit/startupClasses/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/startupClasses rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/startupClasses/{name} rel=self
This resource.
Update this weblogic.management.configuration.StartupClassMBean instance.
Must contain a weblogic.management.configuration.StartupClassMBean entity.
This resource manages the create forms for the systemComponentConfigurations collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SystemComponentConfigurationMBean entity populated with default values that can be customized then posted (using the POST method) to the systemComponentConfigurations collection resource to create a new instance.
Contains a weblogic.management.configuration.SystemComponentConfigurationMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/systemComponentConfigurationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurations rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurationCreateForm 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}/edit/systemComponentConfigurations rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurations rel=self
This resource.
Add a new weblogic.management.configuration.SystemComponentConfigurationMBean instance to this collection.
Must contain a weblogic.management.configuration.SystemComponentConfigurationMBean entity.
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}/edit/systemComponentConfigurations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurations rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/systemComponentConfigurations/{name} rel=self
This resource.
Update this weblogic.management.configuration.SystemComponentConfigurationMBean instance.
Must contain a weblogic.management.configuration.SystemComponentConfigurationMBean entity.
This resource manages the create forms for the systemComponents collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SystemComponentMBean entity populated with default values that can be customized then posted (using the POST method) to the systemComponents collection resource to create a new instance.
Contains a weblogic.management.configuration.SystemComponentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/systemComponentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/systemComponents rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/systemComponentCreateForm 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}/edit/systemComponents rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/systemComponentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/systemComponents rel=self
This resource.
Add a new weblogic.management.configuration.SystemComponentMBean instance to this collection.
Must contain a weblogic.management.configuration.SystemComponentMBean entity.
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}/edit/systemComponents/{name} rel=canonical
This resource.
rel=machine
This resource's machine reference to a weblogic.management.configuration.MachineMBean resource.
uri=/management/weblogic/{version}/edit/systemComponents rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/systemComponents/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/systemComponents/{name}/systemComponentStart rel=systemComponentStart
This resource's systemComponentStart singleton resource.
Update this weblogic.management.configuration.SystemComponentMBean instance.
Must contain a weblogic.management.configuration.SystemComponentMBean entity.
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}/edit/systemComponents/{name}/systemComponentStart rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/systemComponents/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/systemComponents/{name}/systemComponentStart rel=self
This resource.
Update this weblogic.management.configuration.SystemComponentStartMBean instance.
Must contain a weblogic.management.configuration.SystemComponentStartMBean entity.
This resource manages the create forms for the virtualHosts collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.VirtualHostMBean entity populated with default values that can be customized then posted (using the POST method) to the virtualHosts collection resource to create a new instance.
Contains a weblogic.management.configuration.VirtualHostMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/virtualHostCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualHosts rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualHostCreateForm 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}/edit/virtualHosts rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualHostCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualHosts rel=self
This resource.
Add a new weblogic.management.configuration.VirtualHostMBean instance to this collection.
Must contain a weblogic.management.configuration.VirtualHostMBean entity.
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}/edit/virtualHosts/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualHosts rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualHosts/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/virtualHosts/{name}/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
Update this weblogic.management.configuration.VirtualHostMBean instance.
Must contain a weblogic.management.configuration.VirtualHostMBean entity.
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}/edit/virtualHosts/{name}/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualHosts/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualHosts/{name}/webServerLog rel=self
This resource.
Update this weblogic.management.configuration.WebServerLogMBean instance.
Must contain a weblogic.management.configuration.WebServerLogMBean entity.
This resource manages the create forms for the virtualTargets collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.VirtualTargetMBean entity populated with default values that can be customized then posted (using the POST method) to the virtualTargets collection resource to create a new instance.
Contains a weblogic.management.configuration.VirtualTargetMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/virtualTargetCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualTargets rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualTargetCreateForm 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}/edit/virtualTargets rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualTargetCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualTargets rel=self
This resource.
Add a new weblogic.management.configuration.VirtualTargetMBean instance to this collection.
Must contain a weblogic.management.configuration.VirtualTargetMBean entity.
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}/edit/virtualTargets/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualTargets rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualTargets/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/virtualTargets/{name}/webServer rel=webServer
This resource's webServer singleton resource.
Update this weblogic.management.configuration.VirtualTargetMBean instance.
Must contain a weblogic.management.configuration.VirtualTargetMBean entity.
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}/edit/virtualTargets/{name}/webServer rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualTargets/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualTargets/{name}/webServer rel=self
This resource.
uri=/management/weblogic/{version}/edit/virtualTargets/{name}/webServer/webServerLog rel=webServerLog
This resource's webServerLog singleton resource.
Update this weblogic.management.configuration.WebServerMBean instance.
Must contain a weblogic.management.configuration.WebServerMBean entity.
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}/edit/virtualTargets/{name}/webServer/webServerLog rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/virtualTargets/{name}/webServer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/virtualTargets/{name}/webServer/webServerLog rel=self
This resource.
Update this weblogic.management.configuration.WebServerLogMBean instance.
Must contain a weblogic.management.configuration.WebServerLogMBean entity.
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}/edit/webAppContainer rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webAppContainer/gzipCompression rel=gzipCompression
This resource's gzipCompression singleton resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webAppContainer rel=self
This resource.
Update this weblogic.management.configuration.WebAppContainerMBean instance.
Must contain a weblogic.management.configuration.WebAppContainerMBean entity.
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}/edit/webAppContainer/gzipCompression rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webAppContainer rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webAppContainer/gzipCompression rel=self
This resource.
Update this weblogic.management.configuration.GzipCompressionMBean instance.
Must contain a weblogic.management.configuration.GzipCompressionMBean entity.
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}/edit/webserviceSecurities rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurityCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities rel=self
This resource.
Add a new weblogic.management.configuration.WebserviceSecurityMBean instance to this collection.
Must contain a weblogic.management.configuration.WebserviceSecurityMBean entity.
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}/edit/webserviceSecurities/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviderCreateForm rel=webserviceCredentialProviderCreateForm
The create form resource for this resource's webserviceCredentialProviders collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders rel=webserviceCredentialProviders
This resource's webserviceCredentialProviders collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokenCreateForm rel=webserviceSecurityTokenCreateForm
The create form resource for this resource's webserviceSecurityTokens collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens rel=webserviceSecurityTokens
This resource's webserviceSecurityTokens collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTimestamp rel=webserviceTimestamp
This resource's webserviceTimestamp singleton resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlerCreateForm rel=webserviceTokenHandlerCreateForm
The create form resource for this resource's webserviceTokenHandlers collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers rel=webserviceTokenHandlers
This resource's webserviceTokenHandlers collection resource.
Update this weblogic.management.configuration.WebserviceSecurityMBean instance.
Must contain a weblogic.management.configuration.WebserviceSecurityMBean entity.
This resource manages the create forms for the webserviceCredentialProviders collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebserviceCredentialProviderMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceCredentialProviders collection resource to create a new instance.
Contains a weblogic.management.configuration.WebserviceCredentialProviderMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviderCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviderCreateForm rel=self
This 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}/edit/webserviceSecurities/{name}/webserviceCredentialProviders rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviderCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders rel=self
This resource.
Add a new weblogic.management.configuration.WebserviceCredentialProviderMBean instance to this collection.
Must contain a weblogic.management.configuration.WebserviceCredentialProviderMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationPropertyCreateForm rel=configurationPropertyCreateForm
The create form resource for this resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name} rel=self
This resource.
Update this weblogic.management.configuration.WebserviceCredentialProviderMBean instance.
Must contain a weblogic.management.configuration.WebserviceCredentialProviderMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This resource manages the create forms for the configurationProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name}/configurationProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceCredentialProviders/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the webserviceSecurityTokens collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebserviceSecurityTokenMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceSecurityTokens collection resource to create a new instance.
Contains a weblogic.management.configuration.WebserviceSecurityTokenMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokenCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokenCreateForm rel=self
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}/edit/webserviceSecurities/{name}/webserviceSecurityTokens rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokenCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens rel=self
This resource.
Add a new weblogic.management.configuration.WebserviceSecurityTokenMBean instance to this collection.
Must contain a weblogic.management.configuration.WebserviceSecurityTokenMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationPropertyCreateForm rel=configurationPropertyCreateForm
The create form resource for this resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name} rel=self
This resource.
Update this weblogic.management.configuration.WebserviceSecurityTokenMBean instance.
Must contain a weblogic.management.configuration.WebserviceSecurityTokenMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This resource manages the create forms for the configurationProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name}/configurationProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceSecurityTokens/{name} 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}/edit/webserviceSecurities/{name}/webserviceTimestamp rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTimestamp rel=self
This resource.
Update this weblogic.management.configuration.WebserviceTimestampMBean instance.
Must contain a weblogic.management.configuration.WebserviceTimestampMBean entity.
This resource manages the create forms for the webserviceTokenHandlers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebserviceTokenHandlerMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceTokenHandlers collection resource to create a new instance.
Contains a weblogic.management.configuration.WebserviceTokenHandlerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlerCreateForm 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}/edit/webserviceSecurities/{name}/webserviceTokenHandlers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers rel=self
This resource.
Add a new weblogic.management.configuration.WebserviceTokenHandlerMBean instance to this collection.
Must contain a weblogic.management.configuration.WebserviceTokenHandlerMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationPropertyCreateForm rel=configurationPropertyCreateForm
The create form resource for this resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name} rel=self
This resource.
Update this weblogic.management.configuration.WebserviceTokenHandlerMBean instance.
Must contain a weblogic.management.configuration.WebserviceTokenHandlerMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.configuration.ConfigurationPropertyMBean instance to this collection.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
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}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.management.configuration.ConfigurationPropertyMBean instance.
Must contain a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This resource manages the create forms for the configurationProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.ConfigurationPropertyMBean entity populated with default values that can be customized then posted (using the POST method) to the configurationProperties collection resource to create a new instance.
Contains a weblogic.management.configuration.ConfigurationPropertyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name}/configurationProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities/{name}/webserviceTokenHandlers/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the webserviceSecurities collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WebserviceSecurityMBean entity populated with default values that can be customized then posted (using the POST method) to the webserviceSecurities collection resource to create a new instance.
Contains a weblogic.management.configuration.WebserviceSecurityMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/webserviceSecurityCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/webserviceSecurities rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceSecurityCreateForm rel=self
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}/edit/webserviceTestpage rel=canonical
This resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/webserviceTestpage rel=self
This resource.
Update this weblogic.management.configuration.WebserviceTestpageMBean instance.
Must contain a weblogic.management.configuration.WebserviceTestpageMBean entity.
This resource manages the create forms for the WLDFSystemResources collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WLDFSystemResourceMBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFSystemResources collection resource to create a new instance.
Contains a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResourceCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResourceCreateForm 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}/edit/WLDFSystemResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResourceCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources rel=self
This resource.
Add a new weblogic.management.configuration.WLDFSystemResourceMBean instance to this collection.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource rel=WLDFResource
This resource's WLDFResource singleton resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/WLDFSystemResources/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeploymentCreateForm rel=subDeploymentCreateForm
The create form resource for this resource's subDeployments collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.WLDFSystemResourceMBean instance.
Must contain a weblogic.management.configuration.WLDFSystemResourceMBean entity.
This resource manages the create forms for the subDeployments collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.SubDeploymentMBean entity populated with default values that can be customized then posted (using the POST method) to the subDeployments collection resource to create a new instance.
Contains a weblogic.management.configuration.SubDeploymentMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeploymentCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeploymentCreateForm 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}/edit/WLDFSystemResources/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeploymentCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments rel=self
This resource.
Add a new weblogic.management.configuration.SubDeploymentMBean instance to this collection.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/WLDFSystemResources/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/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}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name} rel=self
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/subDeployments/{name}/subDeployments/{name}/subDeployments rel=subDeployments
This resource's subDeployments collection resource.
Update this weblogic.management.configuration.SubDeploymentMBean instance.
Must contain a weblogic.management.configuration.SubDeploymentMBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester rel=harvester
This resource's harvester singleton resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=instrumentation
This resource's instrumentation singleton resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource rel=self
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/WLDFSystemResources/{name}/WLDFResource/harvester rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=harvestedTypeCreateForm
The create form resource for this resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=harvestedTypes
This resource's harvestedTypes collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvesterBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvesterBean entity.
This resource manages the create forms for the harvestedTypes collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity populated with default values that can be customized then posted (using the POST method) to the harvestedTypes collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm 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}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypeCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/harvester/harvestedTypes/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHarvestedTypeBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=WLDFInstrumentationMonitorCreateForm
The create form resource for this resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=WLDFInstrumentationMonitors
This resource's WLDFInstrumentationMonitors collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationBean entity.
This resource manages the create forms for the WLDFInstrumentationMonitors collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity populated with default values that can be customized then posted (using the POST method) to the WLDFInstrumentationMonitors collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation 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}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitorCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/instrumentation/WLDFInstrumentationMonitors rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFInstrumentationMonitorBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=JMSNotificationCreateForm
The create form resource for this resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=JMSNotifications
This resource's JMSNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=JMXNotificationCreateForm
The create form resource for this resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=JMXNotifications
This resource's JMXNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=RESTNotificationCreateForm
The create form resource for this resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=RESTNotifications
This resource's RESTNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=SMTPNotificationCreateForm
The create form resource for this resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=SMTPNotifications
This resource's SMTPNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=SNMPNotificationCreateForm
The create form resource for this resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=SNMPNotifications
This resource's SNMPNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupActions rel=action title=lookupActions
This resource's lookupActions action resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/lookupNotification rel=action title=lookupNotification
This resource's lookupNotification action resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=actionCreateForm
The create form resource for this resource's actions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=actions
This resource's actions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=heapDumpActionCreateForm
The create form resource for this resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=heapDumpActions
This resource's heapDumpActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=imageNotificationCreateForm
The create form resource for this resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=imageNotifications
This resource's imageNotifications collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=logActionCreateForm
The create form resource for this resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=logActions
This resource's logActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=scaleDownActionCreateForm
The create form resource for this resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=scaleDownActions
This resource's scaleDownActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=scaleUpActionCreateForm
The create form resource for this resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=scaleUpActions
This resource's scaleUpActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=scriptActionCreateForm
The create form resource for this resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=scriptActions
This resource's scriptActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=self
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=threadDumpActionCreateForm
The create form resource for this resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=threadDumpActions
This resource's threadDumpActions collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=watcheCreateForm
The create form resource for this resource's watches collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=watches
This resource's watches collection resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchNotificationBean entity.
This resource manages the create forms for the actions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFActionBean entity populated with default values that can be customized then posted (using the POST method) to the actions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=self
This 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=arrayProperties
This resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=arrayPropertyCreateForm
The create form resource for this resource's arrayProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=mapProperties
This resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=mapPropertyCreateForm
The create form resource for this resource's mapProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for this resource's properties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFArrayPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This resource manages the create forms for the arrayProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the arrayProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFArrayPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/arrayProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/configurationProperties rel=parent
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/encryptedProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=configurationProperties
This resource's configurationProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=encryptedProperties
This resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=encryptedPropertyCreateForm
The create form resource for this resource's encryptedProperties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=properties
This resource's properties collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=propertyCreateForm
The create form resource for 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/configurationProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedProperties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This resource manages the create forms for the encryptedProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the encryptedProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFEncryptedPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/encryptedPropertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=parent
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/properties/{name} rel=canonical
This resource.
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name}/propertyCreateForm rel=canonical
This resource.
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the mapProperties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity populated with default values that can be customized then posted (using the POST method) to the mapProperties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFConfigurationPropertiesBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapPropertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/mapProperties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFPropertyBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFPropertyBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This resource manages the create forms for the properties collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFPropertyBean entity populated with default values that can be customized then posted (using the POST method) to the properties collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFPropertyBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/propertyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name}/properties rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/actions/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages the create forms for the heapDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the heapDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/heapDumpActions/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFHeapDumpActionBean entity.
This resource manages the create forms for the imageNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the imageNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/imageNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFImageNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFImageNotificationBean entity.
This resource manages the create forms for the JMSNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMSNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMSNotifications/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMSNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMSNotificationBean entity.
This resource manages the create forms for the JMXNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the JMXNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/JMXNotifications/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFJMXNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFJMXNotificationBean entity.
This resource manages the create forms for the logActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFLogActionBean entity populated with default values that can be customized then posted (using the POST method) to the logActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=self
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFLogActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/logActions/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFLogActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFLogActionBean entity.
The resource supports the following methods:
The resource supports the following methods:
This resource manages the create forms for the RESTNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the RESTNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
This resource.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/RESTNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFRESTNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFRESTNotificationBean entity.
This resource manages the create forms for the scaleDownActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleDownActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleDownActions/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleDownActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleDownActionBean entity.
This resource manages the create forms for the scaleUpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity populated with default values that can be customized then posted (using the POST method) to the scaleUpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=self
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scaleUpActions/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScaleUpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScaleUpActionBean entity.
This resource manages the create forms for the scriptActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity populated with default values that can be customized then posted (using the POST method) to the scriptActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=self
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFScriptActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/scriptActions/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScriptActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScriptActionBean entity.
This resource manages the create forms for the SMTPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SMTPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SMTPNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSMTPNotificationBean entity.
This resource manages the create forms for the SNMPNotifications collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity populated with default values that can be customized then posted (using the POST method) to the SNMPNotifications collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotificationCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/SNMPNotifications rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFSNMPNotificationBean entity.
This resource manages the create forms for the threadDumpActions collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity populated with default values that can be customized then posted (using the POST method) to the threadDumpActions collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification 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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActionCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/threadDumpActions rel=parent
The parent resource of this resource.
This resource.
Update this weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFThreadDumpActionBean entity.
This resource manages the create forms for the watches collection resource.
The resource supports the following methods:
This resource returns a weblogic.diagnostics.descriptor.WLDFWatchBean entity populated with default values that can be customized then posted (using the POST method) to the watches collection resource to create a new instance.
Contains a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=self
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watcheCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=self
This resource.
Add a new weblogic.diagnostics.descriptor.WLDFWatchBean instance to this collection.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=schedule
This resource's schedule singleton resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFWatchBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFWatchBean entity.
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}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WLDFSystemResources/{name}/WLDFResource/watchNotification/watches/{name}/schedule rel=self
This resource.
Update this weblogic.diagnostics.descriptor.WLDFScheduleBean instance.
Must contain a weblogic.diagnostics.descriptor.WLDFScheduleBean entity.
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}/edit/WSReliableDeliveryPolicies rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicyCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicies rel=self
This resource.
Add a new weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance to this collection.
Must contain a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity.
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}/edit/WSReliableDeliveryPolicies/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicies rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicies/{name} rel=self
This resource.
Update this weblogic.management.configuration.WSReliableDeliveryPolicyMBean instance.
Must contain a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity.
This resource manages the create forms for the WSReliableDeliveryPolicies collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity populated with default values that can be customized then posted (using the POST method) to the WSReliableDeliveryPolicies collection resource to create a new instance.
Contains a weblogic.management.configuration.WSReliableDeliveryPolicyMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicyCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicies rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WSReliableDeliveryPolicyCreateForm rel=self
This resource.
This resource manages the create forms for the WTCServers collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCServerMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCServers collection resource to create a new instance.
Contains a weblogic.management.configuration.WTCServerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServerCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServerCreateForm 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}/edit/WTCServers rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServerCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers rel=self
This resource.
Add a new weblogic.management.configuration.WTCServerMBean instance to this collection.
Must contain a weblogic.management.configuration.WTCServerMBean entity.
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}/edit/WTCServers/{name}/WTCExportCreateForm rel=WTCExportCreateForm
The create form resource for this resource's WTCExports collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExports rel=WTCExports
This resource's WTCExports collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImportCreateForm rel=WTCImportCreateForm
The create form resource for this resource's WTCImports collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImports rel=WTCImports
This resource's WTCImports collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDomCreateForm rel=WTCLocalTuxDomCreateForm
The create form resource for this resource's WTCLocalTuxDoms collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDoms rel=WTCLocalTuxDoms
This resource's WTCLocalTuxDoms collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswordCreateForm rel=WTCPasswordCreateForm
The create form resource for this resource's WTCPasswords collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswords rel=WTCPasswords
This resource's WTCPasswords collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDomCreateForm rel=WTCRemoteTuxDomCreateForm
The create form resource for this resource's WTCRemoteTuxDoms collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDoms rel=WTCRemoteTuxDoms
This resource's WTCRemoteTuxDoms collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCResources rel=WTCResources
This resource's WTCResources singleton resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCResourcesCreateForm rel=WTCResourcesCreateForm
The create form resource for this resource's WTCResources optional singleton resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobal rel=WTCtBridgeGlobal
This resource's WTCtBridgeGlobal singleton resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobalCreateForm rel=WTCtBridgeGlobalCreateForm
The create form resource for this resource's WTCtBridgeGlobal optional singleton resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirectCreateForm rel=WTCtBridgeRedirectCreateForm
The create form resource for this resource's WTCtBridgeRedirects collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirects rel=WTCtBridgeRedirects
This resource's WTCtBridgeRedirects collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=self
This resource.
Update this weblogic.management.configuration.WTCServerMBean instance.
Must contain a weblogic.management.configuration.WTCServerMBean entity.
This resource manages the create forms for the WTCExports collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCExportMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCExports collection resource to create a new instance.
Contains a weblogic.management.configuration.WTCExportMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExportCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExports rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExportCreateForm 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}/edit/WTCServers/{name}/WTCExports rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExportCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExports rel=self
This resource.
Add a new weblogic.management.configuration.WTCExportMBean instance to this collection.
Must contain a weblogic.management.configuration.WTCExportMBean entity.
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}/edit/WTCServers/{name}/WTCExports/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExports rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCExports/{name} rel=self
This resource.
Update this weblogic.management.configuration.WTCExportMBean instance.
Must contain a weblogic.management.configuration.WTCExportMBean entity.
This resource manages the create forms for the WTCImports collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCImportMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCImports collection resource to create a new instance.
Contains a weblogic.management.configuration.WTCImportMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImportCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImports rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImportCreateForm 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}/edit/WTCServers/{name}/WTCImports rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImportCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImports rel=self
This resource.
Add a new weblogic.management.configuration.WTCImportMBean instance to this collection.
Must contain a weblogic.management.configuration.WTCImportMBean entity.
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}/edit/WTCServers/{name}/WTCImports/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImports rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCImports/{name} rel=self
This resource.
Update this weblogic.management.configuration.WTCImportMBean instance.
Must contain a weblogic.management.configuration.WTCImportMBean entity.
This resource manages the create forms for the WTCLocalTuxDoms collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCLocalTuxDomMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCLocalTuxDoms collection resource to create a new instance.
Contains a weblogic.management.configuration.WTCLocalTuxDomMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDomCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDoms rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDomCreateForm 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}/edit/WTCServers/{name}/WTCLocalTuxDoms rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDomCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDoms rel=self
This resource.
Add a new weblogic.management.configuration.WTCLocalTuxDomMBean instance to this collection.
Must contain a weblogic.management.configuration.WTCLocalTuxDomMBean entity.
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}/edit/WTCServers/{name}/WTCLocalTuxDoms/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDoms rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCLocalTuxDoms/{name} rel=self
This resource.
Update this weblogic.management.configuration.WTCLocalTuxDomMBean instance.
Must contain a weblogic.management.configuration.WTCLocalTuxDomMBean entity.
This resource manages the create forms for the WTCPasswords collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCPasswordMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCPasswords collection resource to create a new instance.
Contains a weblogic.management.configuration.WTCPasswordMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswordCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswords rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswordCreateForm 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}/edit/WTCServers/{name}/WTCPasswords rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswordCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswords rel=self
This resource.
Add a new weblogic.management.configuration.WTCPasswordMBean instance to this collection.
Must contain a weblogic.management.configuration.WTCPasswordMBean entity.
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}/edit/WTCServers/{name}/WTCPasswords/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswords rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCPasswords/{name} rel=self
This resource.
Update this weblogic.management.configuration.WTCPasswordMBean instance.
Must contain a weblogic.management.configuration.WTCPasswordMBean entity.
This resource manages the create forms for the WTCRemoteTuxDoms collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCRemoteTuxDomMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCRemoteTuxDoms collection resource to create a new instance.
Contains a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDomCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDoms rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDomCreateForm 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}/edit/WTCServers/{name}/WTCRemoteTuxDoms rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDomCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDoms rel=self
This resource.
Add a new weblogic.management.configuration.WTCRemoteTuxDomMBean instance to this collection.
Must contain a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.
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}/edit/WTCServers/{name}/WTCRemoteTuxDoms/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDoms rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCRemoteTuxDoms/{name} rel=self
This resource.
Update this weblogic.management.configuration.WTCRemoteTuxDomMBean instance.
Must contain a weblogic.management.configuration.WTCRemoteTuxDomMBean entity.
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}/edit/WTCServers/{name}/WTCResources rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCResourcesCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCResources rel=self
This resource.
Update this weblogic.management.configuration.WTCResourcesMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.WTCResourcesMBean entity.
This resource manages the create forms for the WTCResources optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCResourcesMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCResources optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.WTCResourcesMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCResourcesCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCResourcesCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCResourcesCreateForm 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}/edit/WTCServers/{name}/WTCtBridgeGlobal rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobalCreateForm rel=create-form
The create form resource for this optional singleton resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobal rel=self
This resource.
Update this weblogic.management.configuration.WTCtBridgeGlobalMBean instance if it exists; otherwise, create it.
Must contain a weblogic.management.configuration.WTCtBridgeGlobalMBean entity.
This resource manages the create forms for the WTCtBridgeGlobal optional singleton instance.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCtBridgeGlobalMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCtBridgeGlobal optional singleton resource to create a new instance if it currently does not exist.
Contains a weblogic.management.configuration.WTCtBridgeGlobalMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobalCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobalCreateForm rel=create
The optional singleton resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeGlobalCreateForm rel=self
This resource.
This resource manages the create forms for the WTCtBridgeRedirects collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.WTCtBridgeRedirectMBean entity populated with default values that can be customized then posted (using the POST method) to the WTCtBridgeRedirects collection resource to create a new instance.
Contains a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirectCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirects rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirectCreateForm 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}/edit/WTCServers/{name}/WTCtBridgeRedirects rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirectCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirects rel=self
This resource.
Add a new weblogic.management.configuration.WTCtBridgeRedirectMBean instance to this collection.
Must contain a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.
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}/edit/WTCServers/{name}/WTCtBridgeRedirects/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirects rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/WTCServers/{name}/WTCtBridgeRedirects/{name} rel=self
This resource.
Update this weblogic.management.configuration.WTCtBridgeRedirectMBean instance.
Must contain a weblogic.management.configuration.WTCtBridgeRedirectMBean entity.
This resource manages the create forms for the XMLEntityCaches collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.XMLEntityCacheMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLEntityCaches collection resource to create a new instance.
Contains a weblogic.management.configuration.XMLEntityCacheMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/XMLEntityCacheCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLEntityCaches rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLEntityCacheCreateForm 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}/edit/XMLEntityCaches rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLEntityCacheCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLEntityCaches rel=self
This resource.
Add a new weblogic.management.configuration.XMLEntityCacheMBean instance to this collection.
Must contain a weblogic.management.configuration.XMLEntityCacheMBean entity.
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}/edit/XMLEntityCaches/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLEntityCaches rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLEntityCaches/{name} rel=self
This resource.
Update this weblogic.management.configuration.XMLEntityCacheMBean instance.
Must contain a weblogic.management.configuration.XMLEntityCacheMBean entity.
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}/edit/XMLRegistries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries rel=self
This resource.
Add a new weblogic.management.configuration.XMLRegistryMBean instance to this collection.
Must contain a weblogic.management.configuration.XMLRegistryMBean entity.
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}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=XMLEntitySpecRegistryEntries
This resource's XMLEntitySpecRegistryEntries collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntryCreateForm rel=XMLEntitySpecRegistryEntryCreateForm
The create form resource for this resource's XMLEntitySpecRegistryEntries collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=XMLParserSelectRegistryEntries
This resource's XMLParserSelectRegistryEntries collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntryCreateForm rel=XMLParserSelectRegistryEntryCreateForm
The create form resource for this resource's XMLParserSelectRegistryEntries collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name} rel=self
This resource.
Update this weblogic.management.configuration.XMLRegistryMBean instance.
Must contain a weblogic.management.configuration.XMLRegistryMBean entity.
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}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=self
This resource.
Add a new weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instance to this collection.
Must contain a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entity.
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}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries/{name} rel=self
This resource.
Update this weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean instance.
Must contain a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entity.
This resource manages the create forms for the XMLEntitySpecRegistryEntries collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLEntitySpecRegistryEntries collection resource to create a new instance.
Contains a weblogic.management.configuration.XMLEntitySpecRegistryEntryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntries rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLEntitySpecRegistryEntryCreateForm 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}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntryCreateForm rel=create-form
The create form resource for this collection resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=self
This resource.
Add a new weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instance to this collection.
Must contain a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entity.
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}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries/{name} rel=self
This resource.
Update this weblogic.management.configuration.XMLParserSelectRegistryEntryMBean instance.
Must contain a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entity.
This resource manages the create forms for the XMLParserSelectRegistryEntries collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLParserSelectRegistryEntries collection resource to create a new instance.
Contains a weblogic.management.configuration.XMLParserSelectRegistryEntryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntries rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistries/{name}/XMLParserSelectRegistryEntryCreateForm rel=self
This resource.
This resource manages the create forms for the XMLRegistries collection resource.
The resource supports the following methods:
This resource returns a weblogic.management.configuration.XMLRegistryMBean entity populated with default values that can be customized then posted (using the POST method) to the XMLRegistries collection resource to create a new instance.
Contains a weblogic.management.configuration.XMLRegistryMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/edit/XMLRegistryCreateForm rel=canonical
This resource.
uri=/management/weblogic/{version}/edit/XMLRegistries rel=create
The collection resource for this create form resource.
uri=/management/weblogic/{version}/edit rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/edit/XMLRegistryCreateForm rel=self
This resource.