View This Deployment Progress Object Collection
/management/weblogic/{version}/domainRuntime/deploymentManager/deploymentProgressObjects
View this deployment progress object collection.
Request
-
version(required): string
The version of the WebLogic REST interface.
-
excludeFields: string
The 'excludeFields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields whose name is not on the list will be returned. If not present, all fields are returned (unless the 'fields' query parameter is specified). Note: 'fields' must not be specified if 'excludeFields' is specified.
-
excludeLinks: string
The 'excludeLinks' query parameter is used to restrict which links are returned in the response. It is a comma separated list of link relationship names. If present, only links whose relationship name is not on the list will be returned. If not present, all links are returned (unless the 'links' query parameter is specified). Note: 'links' must not be specified if 'excludeLinks' is specified.
-
fields: string
The 'fields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields with matching names are returned. If not present, all fields are returned (unless the 'excludeFields' query parameter is specified). Note: 'excludeFields' must not be specified if 'fields' is specified.
-
links: string
The 'links' query parameter is used to restrict which links are returned in the response. It is a comma separated list of link relationship names. If present, only links with matching relationship names are returned. If not present, all links are returned (unless the 'excludeLinks' query parameter is specified). Note: 'excludeLinks' must not be specified if 'links' is specified.
-
Admin: basic
Type:
basicDescription:A user in the Admin security role. -
Deployer: basic
Type:
basicDescription:A user in the Deployer security role. -
Monitor: basic
Type:
basicDescription:A user in the Monitor security role. -
Operator: basic
Type:
basicDescription:A user in the Operator security role.
Response
- application/json
200 Response
Returns a list of deployment progress object entities.
object-
applicationName:
string
Read Only:
trueThe name of the application for the current deployment operation.
-
completed:
boolean
This property indicates whether an asynchronous job has completed.
-
deploymentMessages:
array Items
Title:
ItemsRead Only:trueProvides an ordered array of status messages generated for the current deployment operation.
-
endTime:
string(date-time)
This property indicates the time when the asynchronous job ended.
This value represents a date as a string in ISO 8601 format, yyyy-MM-dd'T'HH:mm:ss.SSSXXX -
failedTargets:
array Items
Title:
ItemsRead Only:trueThe targets on which the current deployment operation failed.
-
id:
string
Read Only:
trueThe unique ID for the current deployment operation.
-
name:
string
Read Only:
trueThe name of this configuration. WebLogic Server uses an MBean to implement and persist the configuration.
Constraints
- unharvestable
-
operationType:
integer(int32)
Read Only:
trueThe deployment operation type for the current deployment operation. Possible values are 1 (start) and 2 (stop).
-
progress:
string
Allowed Values:
[ "succeeded", "processing", "failed" ]This property indicates whether an asynchronous job has succeeded, failed, or is in progress.
-
rootExceptions:
array Items
Title:
ItemsRead Only:trueIf the current deployment operation has failed, this method may return zero or more exception(s) which represent the root cause of the failure. The array will not contain WLS exception classes; instead they will be new Exceptions containing the stack traces and messages from the original WLS Exceptions.
-
startTime:
string(date-time)
This property indicates the time when an asynchronous job was started.
This value represents a date as a string in ISO 8601 format, yyyy-MM-dd'T'HH:mm:ss.SSSXXX -
startTimeAsLong:
integer(int64)
Read Only:
trueThe time that the current deployment operation began. The value is in milliseconds consistent with the system time.
-
state:
string
Read Only:
trueThe state of the current deployment operation. Possible values are STATE_INITIALIZED, STATE_RUNNING, STATE_COMPLETED, STATE_FAILED and STATE_DEFERRED.
-
targets:
array Items
Title:
ItemsRead Only:trueThe targets specified for the current deployment operation.
-
type:
string
Read Only:
trueReturns the type of the MBean.
Constraints
- unharvestable
arrayItemstrueProvides an ordered array of status messages generated for the current deployment operation.
arrayItemstrueThe targets on which the current deployment operation failed.
arrayItemstrueIf the current deployment operation has failed, this method may return zero or more exception(s) which represent the root cause of the failure. The array will not contain WLS exception classes; instead they will be new Exceptions containing the stack traces and messages from the original WLS Exceptions.
-
Array of:
object Throwable
Represents errors and exceptions.
arrayItemstrueThe targets specified for the current deployment operation.
objectRepresents errors and exceptions.
-
cause:
object Throwable
Represents errors and exceptions.
-
message:
string
This property contains the reason why the error or exception was thrown.
-
state:
string
Examples
View this deployment progress object collection.
This example uses the GET method to view this deployment progress object 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/domainRuntime/deploymentManager/deploymentProgressObjects?fields=completed,progress,applicationName,operationType&links=none
Example Response
HTTP/1.1 200 OK
Response Body:
{
"items": [{
"operationType": 3,
"applicationName": "fairShare",
"progress": "success",
"completed": true
}]
}
Back to Top