Download OpenAPI specification:Download
Welcome to the SMA OpCon REST API reference. Use this REST API to interact with the OpCon database.
Sample request (this returns a list of access codes by name in descending order): GET /api/accesscodes?sortby=name:desc
| IncludeSecuredDailyJobs | boolean Flag to show/hide list of daily jobs secured by the access code |
| IncludeSecuredMasterJobs | boolean Flag to show/hide list of master jobs secured by the access code |
| Name | string Name of the calendar to fetch (Can accept ? and * wildcards) |
| Ids | string Comma-separated list of calendar unique identifier values |
| Limit | integer <int32> Limits the results being fetched. 0 retrieves just a count |
| Offset | integer <int32> Retrieves records beginning at this record number |
| SortOrders | Array of strings Access code sort order |
| AccessibleCodes | Array of integers <int32> [ items <int32 > ] List of accessible codes |
| HasAdminAccess | boolean Flag to determine admin access |
| SortBy | string Options to sort access code by |
[- {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
]Sample request (this creates a new access code): POST /api/accesscodes
{
"name": "Operator""
}
| id | integer or null <int32> The id of the access code |
| name | string or null The name of the access code |
| description | string or null |
Array of objects or null (CrossReferenceDailyJob) | |
Array of objects or null (CrossReferenceMasterJob) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}{- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}Sample request (this returns the access code having id = 1): GET /api/accesscodes/1
| id required | integer <int32> The unique identifier of the access code to fetch |
{- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}Sample request (this updates the access code): PUT /api/accesscodes/1
{
"id": 1,
"name": "Operator"
}
| id required | integer <int32> The access code id |
| id | integer or null <int32> The id of the access code |
| name | string or null The name of the access code |
| description | string or null |
Array of objects or null (CrossReferenceDailyJob) | |
Array of objects or null (CrossReferenceMasterJob) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}{- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}Sample request (this returns a list of batch users by name in descending order):
GET /api/batchusers?sortby=name:desc
| Ids | string |
| Limit | integer <int32> |
| Offset | integer <int32> |
| Platform | string |
| PlatformId | integer <int32> |
| RoleName | string |
| LoginName | string |
| IncludeRoles | boolean |
| IncludeAssociations | boolean |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
{- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}Sample request (this creates a new batch user):
POST /api/batchusers
{
"platform": {
"id": 3,
"name": "Windows"
}
"loginName": "TestUser",
"password": "userPassword"
"roles": [
{
"id": 1
},
{
"id": 2
}
]
}
| id | integer or null <int32> Id of the batch user |
object (Platform) | |
| loginName | string or null User name for the batch user |
| password | string or null This field is not returned on a GET request. It may be sent in a POST request. If the field is null in a PUT request, it gets ignored and the existing value is unchanged. The value is encrypted optional |
Array of objects or null (Role) Roles associated with this batch user optional | |
Array of objects or null (CrossReferenceDailyJob) Daily jobs associated with this batch user | |
Array of objects or null (CrossReferenceMasterJob) Master jobs associated with this batch user | |
| previousLoginName | string or null |
{- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}{- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}Sample request (this returns the batch user with id = 1):
GET /api/batchusers/1
| id required | integer <int32> The id of the batch user you want to get |
{- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}Sample request (this updates the batch user):
PUT /api/BatchUsers/1
{
"platform": {
"id": 1,
"name": "Windows"
}
"loginName": "TestUser"
}
| id required | integer <int32> The batch user id |
| id | integer or null <int32> Id of the batch user |
object (Platform) | |
| loginName | string or null User name for the batch user |
| password | string or null This field is not returned on a GET request. It may be sent in a POST request. If the field is null in a PUT request, it gets ignored and the existing value is unchanged. The value is encrypted optional |
Array of objects or null (Role) Roles associated with this batch user optional | |
Array of objects or null (CrossReferenceDailyJob) Daily jobs associated with this batch user | |
Array of objects or null (CrossReferenceMasterJob) Master jobs associated with this batch user | |
| previousLoginName | string or null |
{- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}{- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}Sample request (This deletes a batch user with id = 11): DELETE /api/batchusers/11
| id required | integer <int32> The id of the batch user to delete |
| Ids | string |
| Limit | integer <int32> |
| Offset | integer <int32> |
| Platform | string |
| PlatformId | integer <int32> |
| RoleName | string |
| LoginName | string |
| IncludeRoles | boolean |
| IncludeAssociations | boolean |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
Sample request (this returns a list of calendars by name in descending order): GET /api/calendars?sortby=name:desc
| Count | boolean |
| Type | integer <int32> The type of the calendars to fetch |
| Name | string The name of the calendar to fetch |
| Description | string The description of the calendar to fetch |
| IncludeCrossReferences | boolean Flag to include cross-references |
| Ids | string List of unique identifiers to retrieve |
| Limit | integer <int32> Limit the number of records to fetch |
| Offset | integer <int32> Offset the number of records being fetched |
| SortOrders | Array of strings Ordering options |
| HasAdminAccess | boolean Flag for admin access |
| IgnoreCase | boolean Use case-insensitive search criteria |
| SortBy | string Option to sort values by different parameter fields |
[- {
- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}
]Sample request (this creates a new calendar): POST /api/calendars { "name": "CalendarName" }
| id | integer or null <int32> The id of the calendar |
object (MasterSchedule) | |
| type | integer <int32> The type of the calendar |
| name | string or null The name of the calendar |
| dates | Array of strings or null The dates for this calendar |
| description | string or null The description of the calendar |
Array of objects or null (CalendarAssociation) |
{- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}{- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}Sample request (this returns a count of calendars having name like the name provided): GET /api/calendars/count?name=HC:
| Count | boolean |
| Type | integer <int32> The type of the calendars to fetch |
| Name | string The name of the calendar to fetch |
| Description | string The description of the calendar to fetch |
| IncludeCrossReferences | boolean Flag to include cross-references |
| Ids | string List of unique identifiers to retrieve |
| Limit | integer <int32> Limit the number of records to fetch |
| Offset | integer <int32> Offset the number of records being fetched |
| SortOrders | Array of strings Ordering options |
| HasAdminAccess | boolean Flag for admin access |
| IgnoreCase | boolean Use case-insensitive search criteria |
| SortBy | string Option to sort values by different parameter fields |
0Sample request (this returns the calendar with id = 1 ): GET /api/calendars/1
| id required | integer <int32> Id of the calendar to fetch. |
{- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}Sample request (this updates the calendar): PUT /api/calendar/1 { "id": 1, "name": "CalendarName", "dates": [ "03/16/2021", "06/02/2021" ] }
| id required | integer <int32> The calendar id |
| id | integer or null <int32> The id of the calendar |
object (MasterSchedule) | |
| type | integer <int32> The type of the calendar |
| name | string or null The name of the calendar |
| dates | Array of strings or null The dates for this calendar |
| description | string or null The description of the calendar |
Array of objects or null (CalendarAssociation) |
{- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}{- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}Sample request (this deletes dates older than 30 days for the calendar having the provided id): POST /api/calendars/10/deleteOldDates { "calendar": { "id": 10, // required, must match id in URL } }
| id required | integer <int32> The id of the calendar |
The calendar
| id | integer or null <int32> The id of the calendar |
object (MasterSchedule) | |
| type | integer <int32> The type of the calendar |
| name | string or null The name of the calendar |
| dates | Array of strings or null The dates for this calendar |
| description | string or null The description of the calendar |
Array of objects or null (CalendarAssociation) |
{- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}{- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}Sample request (this returns a list of all daily graph edges): GET /api/dailygraphedges?level=-1
| ScheduleIds | string Schedule ids to include |
| Level | integer <int32> Number of successor and predecessor levels (-1, 0, 1, 2). -1 returns all predecessors up to 1000 levels. Default is 1. |
| JobIds | string Job ids to include |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] Schedule dates to include |
| Dates | string |
| PredecessorLevel | integer <int32> Number of predecessor levels (-1, 0, 1, 2). -1 returns all predecessors up to 1000 levels. Default is 1. |
| SuccessorLevel | integer <int32> Number of successor levels (-1, 0, 1, 2). -1 returns all successors up to 1000 levels. Default is 1. |
[- {
- "id": "string",
- "predecessorId": "string",
- "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessorBuilt": true
}
]Sample request (this returns a list of daily graph edges for the daily schedule having the id '20221229|1|1'): GET /api/dailygraphedges/20221229|1|1
| id required | string |
| ScheduleIds | string Schedule ids to include |
| Level | integer <int32> Number of successor and predecessor levels (-1, 0, 1, 2). -1 returns all predecessors up to 1000 levels. Default is 1. |
| JobIds | string Job ids to include |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] Schedule dates to include |
| Dates | string |
| PredecessorLevel | integer <int32> Number of predecessor levels (-1, 0, 1, 2). -1 returns all predecessors up to 1000 levels. Default is 1. |
| SuccessorLevel | integer <int32> Number of successor levels (-1, 0, 1, 2). -1 returns all successors up to 1000 levels. Default is 1. |
[- {
- "id": "string",
- "predecessorId": "string",
- "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessorBuilt": true
}
]Sample request (this returns a list of daily job events in descending order):
GET /api/dailyJobs/{jobId}/events
| ScheduleId required | integer <int32> |
| Instance required | integer <int32> |
| ScheduleDate required | string <date-time> |
| JobName required | string |
| Id required | string |
| jobId required | string |
[- {
- "job": {
- "id": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "frequency": {
- "name": "string"
}, - "id": 0
}
] Sample request(this creates a single** daily job event**):
POST /api/dailyJobs/{jobId}/events/
{
"job": {
"id": "20210712|6000|1|Unix1"
},
"user": {
"id": 0,
"name": "ocadm"
},
"trigger": {
"type": "Status",
"id": 900,
"name": "Finished OK"
},
"event": {
"type": "$CONSOLE:DISPLAY",
"parameters": {
"message": "HELLO"
}
},
"frequency": {
"name": "********"
}
}
| ScheduleId required | integer <int32> |
| Instance required | integer <int32> |
| ScheduleDate required | string <date-time> |
| JobName required | string |
| Id required | string |
| jobId required | string |
required | object (DailyJobId) |
required | object (SmaUserModel) |
required | object |
required | object (JobEventDetailsModel) |
required | object (JobEventFrequencyModel) |
| id | integer <int32> |
{- "job": {
- "id": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "frequency": {
- "name": "string"
}, - "id": 0
}{- "job": {
- "id": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "frequency": {
- "name": "string"
}, - "id": 0
} Sample request(this updates a single** daily job event**):
PUT /api/dailyJobs/{jobId}/events/
{
"job": {
"id": "20210712|6000|1|Unix1"
},
"user": {
"id": 0,
"name": "ocadm"
},
"trigger": {
"type": "Status",
"id": 900,
"name": "Finished OK"
},
"event": {
"type": "$CONSOLE:DISPLAY",
"parameters": {
"message": "HELLO"
}
},
"frequency": {
"name": "********"
}
}
To support legacy architecture, this returns the object as well.
| ScheduleId required | integer <int32> |
| Instance required | integer <int32> |
| ScheduleDate required | string <date-time> |
| JobName required | string |
| Id required | string |
| jobId required | string |
required | object (DailyJobId) |
required | object (SmaUserModel) |
required | object |
required | object (JobEventDetailsModel) |
required | object (JobEventFrequencyModel) |
| id | integer <int32> |
{- "job": {
- "id": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "frequency": {
- "name": "string"
}, - "id": 0
}{- "job": {
- "id": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "frequency": {
- "name": "string"
}, - "id": 0
}Sample request (this deletes a single daily job event):
DELETE /api/dailyJobs/{jobId}/events/{eventId}
| ScheduleId required | integer <int32> |
| Instance required | integer <int32> |
| ScheduleDate required | string <date-time> |
| JobName required | string |
| Id required | string |
| eventId required | integer <int32> |
| jobId required | string |
| Uids | string |
| IncludeDocumentation | boolean |
| IncludeThresholdResourceDependencies | boolean |
| IncludeThresholdResourceUpdates | boolean |
| IncludeExpressionDependencies | boolean |
| IncludeDependencies | boolean |
| IncludeCount | boolean |
| IncludeDetails | boolean |
| IncludeEvents | boolean |
| TerminationDescription | string |
| JobName | string |
| Machine | string |
| StartMachine | string |
| PrimaryMachine | string |
| AlternateMachine | string |
| AlternateMachine2 | string |
| AlternateMachine3 | string |
| Reason | string |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] |
| SortOrders | Array of strings |
| JobStatus | string |
| JobStatusCategories | Array of strings |
| JobType | string |
| PriorityValue | integer <int32> |
| ScheduleStatus | string |
| ScheduleName | string |
| Path | string |
| TagList | Array of strings |
| LimitValue | integer <int32> |
| OffsetValue | integer <int32> |
| DepartmentList | Array of integers <int32> [ items <int32 > ] |
| AccessCodeList | Array of integers <int32> [ items <int32 > ] |
| JobNumber | integer <int32> |
| Ids | string |
| ScheduleIds | string |
| Name | string |
| Dates | string |
| Status | string |
| SortBy | string |
| Priority | string |
| AccessCodeIds | string |
| Limit | string |
| Offset | string |
| Tags | string |
| Categories | string |
| DepartmentIds | string |
| rawId required | string |
| uid | integer or null <int64> |
| uniqueJobId | string or null |
object (DailyJobDetails) | |
object (DailyJobFeedback) | |
object (Department) | |
Array of objects or null (InstanceProperty) | |
| steps | Array of strings or null |
| id | string or null |
| priority | integer <int32> |
| jobName | string or null |
object (Frequency) A frequency | |
| jobNumber | integer <int32> |
| jorsRequestParameters | string or null |
| incidentTicketId | string or null |
| incidentTicketURL | string or null |
object (LsamType) | |
object (AccessCode) An access code with id and name fields | |
object (Machine) | |
object (Machine) | |
object (Machine) | |
object (Machine) | |
object (MachineGroup) | |
object (Machine) | |
| tags | Array of strings or null |
object (JobStatus) | |
object (DailySchedule) | |
| terminationDescription | string or null |
object (ComputedTime) | |
object (ComputedTime) | |
object (ComputedDuration) | |
object (DailyJobDocumentation) | |
Array of objects or null (DailyJobThresholdDependency) | |
Array of objects or null (DailyJobResourceDependency) | |
Array of objects or null (DailyJobThresholdResourceUpdate) | |
Array of objects or null (DailyJobThresholdResourceUpdate) | |
Array of objects or null (DailyJobDependency) | |
Array of objects or null (DailyJobEventModel) | |
object (DailyJobExpressionDependencyCollection) | |
| detailMessages | Array of strings or null |
| isRecurrent | boolean |
| features | Array of strings or null |
| currentStep | string or null |
| jobGroup | integer <int32> |
| startMachineId | integer <int32> |
| startOffset | number <double> |
| startAbsoluteRelative | string or null |
| lateToStartTime | number <double> |
| lateToStartAbsoluteRelative | string or null |
| start | number <double> |
| termination | number <double> |
| estimatedRunTime | integer <int32> |
| lastUpdate | number <double> |
| maxMinutes | integer <int32> |
| originalJobName | string or null |
| shortName | string or null |
| calculatedStartTime | number or null <double> |
| startTimeIsEstimated | boolean |
| calculatedEndTime | number or null <double> |
| endTimeIsEstimated | boolean |
| calculatedDuration | integer <int64> |
| durationIsEstimated | boolean |
| subScheduleDailyName | string or null |
| subScheduleDailyPath | string or null |
| subScheduleDailyInstance | integer or null <int32> |
| subScheduleDailyId | integer or null <int32> |
| subScheduleDailyDate | integer or null <int32> |
| subScheduleMasterName | string or null |
| subScheduleMasterId | integer or null <int32> |
{- "uid": 0,
- "uniqueJobId": "string",
- "details": {
- "subType": "string",
- "subTypeFormDataString": "string",
- "subTypeFormData": {
- "property1": null,
- "property2": null
}, - "calculatedStartTime": "2019-08-24T14:15:22Z",
- "id": "string",
- "documentation": {
- "id": 0,
- "frequency": "string",
- "job": "string"
}, - "jobAction": "string",
- "supportedFeatures": [
- "string"
]
}, - "feedback": { },
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "instanceProperties": [
- {
- "key": "string",
- "value": "string"
}
], - "steps": [
- "string"
], - "id": "string",
- "priority": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "jobNumber": 0,
- "jorsRequestParameters": "string",
- "incidentTicketId": "string",
- "incidentTicketURL": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "startMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "tags": [
- "string"
], - "jobStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}, - "schedule": {
- "uid": 0,
- "instanceProperties": [
- {
- "key": "string",
- "value": "string"
}
], - "dateAsInteger": 0,
- "id": "string",
- "masterId": 0,
- "details": {
- "documentation": "string",
- "deployInformation": {
- "description": "string",
- "version": "string",
- "date": "string",
- "user": "string"
}
}, - "computedStartTime": {
- "time": "string",
- "isEstimated": true,
- "programmedFor": "string",
- "consideredLateAt": "string",
- "latestStart": "string"
}, - "definedStartTime": "string",
- "endTime": "string",
- "name": "string",
- "status": {
- "id": 0,
- "description": "string",
- "category": "string",
- "containsFailedJobs": true
}, - "instance": 0,
- "duration": 0,
- "date": "string",
- "path": "string",
- "containerJobId": "string",
- "workWeek": 0,
- "events": [
- {
- "id": 0,
- "user": {
- "id": 32767,
- "name": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "scheduleId": "string"
}
]
}, - "terminationDescription": "string",
- "computedStartTime": {
- "time": "string",
- "isEstimated": true,
- "programmedFor": "string",
- "consideredLateAt": "string",
- "latestStart": "string"
}, - "computedEndTime": {
- "time": "string",
- "isEstimated": true,
- "programmedFor": "string",
- "consideredLateAt": "string",
- "latestStart": "string"
}, - "computedDuration": {
- "duration": 0,
- "isEstimated": true
}, - "documentation": {
- "id": 0,
- "frequency": "string",
- "job": "string"
}, - "thresholdDependencies": [
- {
- "id": 0,
- "threshold": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}, - "value": 0,
- "operator": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
}
], - "resourceDependencies": [
- {
- "id": 0,
- "resource": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}, - "requires": 0,
- "requiresAll": true,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
}
], - "thresholdUpdates": [
- {
- "id": 0,
- "resource": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}, - "threshold": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}, - "value": 0,
- "status": {
- "id": 0,
- "status": "string"
}, - "frequency": {
- "name": "string"
}, - "jobName": "string",
- "scheduleId": 0
}
], - "resourceUpdates": [
- {
- "id": 0,
- "resource": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}, - "threshold": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- null
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}, - "value": 0,
- "status": {
- "id": 0,
- "status": "string"
}, - "frequency": {
- "name": "string"
}, - "jobName": "string",
- "scheduleId": 0
}
], - "dependencies": [
- {
- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- null
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}
], - "events": [
- {
- "job": {
- "id": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "frequency": {
- "name": "string"
}, - "id": 0
}
], - "expressionDependencies": {
- "id": 0,
- "expression1": "string",
- "expression2": "string"
}, - "detailMessages": [
- "string"
], - "isRecurrent": true,
- "features": [
- "string"
], - "currentStep": "string",
- "jobGroup": 0,
- "startMachineId": 0,
- "startOffset": 0,
- "startAbsoluteRelative": "string",
- "lateToStartTime": 0,
- "lateToStartAbsoluteRelative": "string",
- "start": 0,
- "termination": 0,
- "estimatedRunTime": 0,
- "lastUpdate": 0,
- "maxMinutes": 0,
- "originalJobName": "string",
- "shortName": "string",
- "calculatedStartTime": 0,
- "startTimeIsEstimated": true,
- "calculatedEndTime": 0,
- "endTimeIsEstimated": true,
- "calculatedDuration": 0,
- "durationIsEstimated": true,
- "subScheduleDailyName": "string",
- "subScheduleDailyPath": "string",
- "subScheduleDailyInstance": 0,
- "subScheduleDailyId": 0,
- "subScheduleDailyDate": 0,
- "subScheduleMasterName": "string",
- "subScheduleMasterId": 0
}| Uids | string |
| IncludeDocumentation | boolean |
| IncludeThresholdResourceDependencies | boolean |
| IncludeThresholdResourceUpdates | boolean |
| IncludeExpressionDependencies | boolean |
| IncludeDependencies | boolean |
| IncludeCount | boolean |
| IncludeDetails | boolean |
| IncludeEvents | boolean |
| TerminationDescription | string |
| JobName | string |
| Machine | string |
| StartMachine | string |
| PrimaryMachine | string |
| AlternateMachine | string |
| AlternateMachine2 | string |
| AlternateMachine3 | string |
| Reason | string |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] |
| SortOrders | Array of strings |
| JobStatus | string |
| JobStatusCategories | Array of strings |
| JobType | string |
| PriorityValue | integer <int32> |
| ScheduleStatus | string |
| ScheduleName | string |
| Path | string |
| TagList | Array of strings |
| LimitValue | integer <int32> |
| OffsetValue | integer <int32> |
| DepartmentList | Array of integers <int32> [ items <int32 > ] |
| AccessCodeList | Array of integers <int32> [ items <int32 > ] |
| JobNumber | integer <int32> |
| Ids | string |
| ScheduleIds | string |
| Name | string |
| Dates | string |
| Status | string |
| SortBy | string |
| Priority | string |
| AccessCodeIds | string |
| Limit | string |
| Offset | string |
| Tags | string |
| Categories | string |
| DepartmentIds | string |
| Uids | string |
| IncludeDocumentation | boolean |
| IncludeThresholdResourceDependencies | boolean |
| IncludeThresholdResourceUpdates | boolean |
| IncludeExpressionDependencies | boolean |
| IncludeDependencies | boolean |
| IncludeCount | boolean |
| IncludeDetails | boolean |
| IncludeEvents | boolean |
| TerminationDescription | string |
| JobName | string |
| Machine | string |
| StartMachine | string |
| PrimaryMachine | string |
| AlternateMachine | string |
| AlternateMachine2 | string |
| AlternateMachine3 | string |
| Reason | string |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] |
| SortOrders | Array of strings |
| JobStatus | string |
| JobStatusCategories | Array of strings |
| JobType | string |
| PriorityValue | integer <int32> |
| ScheduleStatus | string |
| ScheduleName | string |
| Path | string |
| TagList | Array of strings |
| LimitValue | integer <int32> |
| OffsetValue | integer <int32> |
| DepartmentList | Array of integers <int32> [ items <int32 > ] |
| AccessCodeList | Array of integers <int32> [ items <int32 > ] |
| JobNumber | integer <int32> |
| Ids | string |
| ScheduleIds | string |
| Name | string |
| Dates | string |
| Status | string |
| SortBy | string |
| Priority | string |
| AccessCodeIds | string |
| Limit | string |
| Offset | string |
| Tags | string |
| Categories | string |
| DepartmentIds | string |
| rawId required | string |
| documentationId required | integer <int32> |
| id | integer or null <int32> |
| frequency | string or null |
| job | string or null |
{- "id": 0,
- "frequency": "string",
- "job": "string"
}| uid required | integer <int64> |
| id required | string |
| id | integer <int32> |
| ticketId | string or null |
| ticketUrl | string or null |
{- "id": 0,
- "ticketId": "string",
- "ticketUrl": "string"
}Sample request (this creates a single expression dependency):
POST /api/dailyJobs/{dailyJobId}/expressionDependencies/
{
"expression1": "someExpression",
"expression2": "expressionTwo"
}
| rawId required | string The daily job indentifier |
The expression dependency object with new values
| id | integer or null <int32> The expression dependecy unique identifier |
| expression1 | string or null The string value for the expression. |
| expression2 | string or null The string value for the expression. |
{- "id": 0,
- "expression1": "string",
- "expression2": "string"
}Sample request (this returns a expression dependency in ascending order):
GET /api/dailyJobs/{dailyJobId}/expressionDependencies/{expressionId}
| rawId required | string The daily job identifier |
| expressionId required | integer <int32> The expression dependency identifier |
Sample request (this updates a single expression dependency):
PUT /api/dailyJobs/{dailyJobId}/expressionDependencies/{expressionId}
{
"id": 1,
"expression1": "someExpression",
"expression2": "expressionTwo"
}
| rawId required | string The daily job indentifier |
| expressionId required | integer <int32> The expression dependency identifier |
The expression dependency object with update values
| id | integer or null <int32> The expression dependecy unique identifier |
| expression1 | string or null The string value for the expression. |
| expression2 | string or null The string value for the expression. |
{- "id": 0,
- "expression1": "string",
- "expression2": "string"
}Sample request (this deletes a single expression dependency):
DELETE /api/dailyJobs/{dailyJobId}/expressionDependencies/{expressionId}
| rawId required | string The daily job indentifier |
| expressionId required | integer <int32> The expression dependency identifier |
The expression dependency object with values to delete
| id | integer or null <int32> The expression dependecy unique identifier |
| expression1 | string or null The string value for the expression. |
| expression2 | string or null The string value for the expression. |
{- "id": 0,
- "expression1": "string",
- "expression2": "string"
}| rawId required | string |
| id | integer or null <int32> |
object (Resource) | |
| requires | integer or null <int32> |
| requiresAll | boolean or null |
object (Frequency) A frequency |
{- "id": 0,
- "resource": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}, - "requires": 0,
- "requiresAll": true,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
}| rawId required | string |
| resourceId required | integer <int32> |
| id | integer or null <int32> |
object (Resource) | |
| requires | integer or null <int32> |
| requiresAll | boolean or null |
object (Frequency) A frequency |
{- "id": 0,
- "resource": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}, - "requires": 0,
- "requiresAll": true,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
}| rawId required | string |
| id | integer or null <int32> |
object (Threshold) | |
| value | integer <int32> |
| operator | string or null |
object (Frequency) A frequency |
{- "id": 0,
- "threshold": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}, - "value": 0,
- "operator": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
}| rawId required | string |
| thresholdId required | integer <int32> |
| id | integer or null <int32> |
object (Threshold) | |
| value | integer <int32> |
| operator | string or null |
object (Frequency) A frequency |
{- "id": 0,
- "threshold": {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}, - "value": 0,
- "operator": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
}Sample request (this returns a list of job dependencies for a daily job with id '20210101|15|1|Job1'):
GET /api/dailyjobs/20210101|15|1|Job1/dependencies
| jobId required | string |
[- {
- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": null,
- "value": null
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}
]Sample request (this updates the job dependencies for a daily job with id '20210101|15|1|Job1'):
PUT /api/dailyjobs/20210101|15|1|Job1/dependencies
[
{
"type": {
"name": "After",
"condition": "Failed",
"offset": 0
},
"predecessor": {
"schedule": {
"name": "SimpleSchedule"
},
"name": "SimpleJob1"
}
}
]
| jobId required | string |
| scheduleId | integer <int32> |
| scheduleInstanceNumber | integer <int32> |
| jobName | string or null |
| id | integer <int64> The id of the job dependency |
object (Frequency) A frequency | |
object (DailyJobDependencyType) A job dependency type | |
object (JobDependencyPredecessor) A job dependency predecessor | |
| scheduleDate | integer <int32> |
| isSatisfied | boolean The status of the daily job dependency |
[- {
- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": null,
- "value": null
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}
][- {
- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": null,
- "value": null
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}
]Sample request (this adds a job dependency for a daily job with id '20210101|15|1|Job1'):
POST /api/dailyjobs/20210101|15|1|Job1/dependencies
{
"type": {
"name": "After",
"condition": "Failed",
"offset": 0
},
"predecessor": {
"schedule": {
"name": "SimpleSchedule"
},
"name": "SimpleJob1"
}
}
| jobId required | string |
| scheduleId | integer <int32> |
| scheduleInstanceNumber | integer <int32> |
| jobName | string or null |
| id | integer <int64> The id of the job dependency |
object (Frequency) A frequency | |
object (DailyJobDependencyType) A job dependency type | |
object (JobDependencyPredecessor) A job dependency predecessor | |
| scheduleDate | integer <int32> |
| isSatisfied | boolean The status of the daily job dependency |
{- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}{- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}Sample request (this returns a job dependency with id '2' for a daily job with id '20210101|15|1|Job1'):
GET /api/dailyjobs/20210101|15|1|Job1/dependencies/2
| jobId required | string |
| id required | integer <int64> |
{- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}Sample request (this updates a job dependency with id '2' for a daily job with id '20210101|15|1|Job1'):
PUT /api/dailyjobs/20210101|15|1|Job1/dependencies/2
{
"type": {
"name": "Conflict",
"jobNameLike": "Simple",
"offset": -1
},
"predecessor": {
"schedule": {
"name": "SimpleSchedule"
},
"name": "SimpleJob1"
| jobId required | string |
| id required | integer <int64> |
| scheduleId | integer <int32> |
| scheduleInstanceNumber | integer <int32> |
| jobName | string or null |
| id | integer <int64> The id of the job dependency |
object (Frequency) A frequency | |
object (DailyJobDependencyType) A job dependency type | |
object (JobDependencyPredecessor) A job dependency predecessor | |
| scheduleDate | integer <int32> |
| isSatisfied | boolean The status of the daily job dependency |
{- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}{- "scheduleId": 0,
- "scheduleInstanceNumber": 0,
- "jobName": "string",
- "id": 0,
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "predecessor": {
- "masterJob": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}, - "jobStatus": 0,
- "startStatus": 0,
- "statusCategory": "string",
- "schedule": {
- "scheduleId": 0,
- "scheduleName": "string",
- "id": "string",
- "date": "string",
- "name": "string",
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}
}, - "id": "string",
- "name": "string",
- "status": "string"
}, - "scheduleDate": 0,
- "isSatisfied": true
}Sample request (this deletes a job dependency with id '2' for a daily job with id '20210101|15|1|Job1'):
DELETE /api/dailyjobs/20210101|15|1|Job1/dependencies/2
| jobId required | string |
| id required | integer <int64> |
[- {
- "resource": "string",
- "name": "string",
- "code": 0,
- "message": "string",
- "ids": [
- 0
]
}
]Sample request (this returns the total count of daily schedules):
GET /api/dailyschedules/count_by_status
| IncludeAll | boolean Flag to include schedule properties, details, and events |
| IncludeProperties | boolean Flag to include schedule properties |
| IncludeDetails | boolean Flag to include schedule details |
| IncludeEvents | boolean Flag to include schedule events |
| uids | string |
| SortOrders | Array of strings Daily schedule sort order |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] Daily schedule dates to include |
| ScheduleCategories | Array of strings Daily schedule categories to include |
| Ids | string |
| Name | string The schedule name (Can accept ? and * wildcards) |
| Status | string The schedule status |
| Categories | string |
| FailedJobs | boolean |
| Offset | integer <int32> Retrieves records beginning at this record number |
| Limit | integer <int32> Limits the results being fetched. |
| Path | string Daily schedule path (Can accept ? and * wildcards) |
| SortBy | string Options to sort daily schedule by |
| Dates | string |
{- "property1": 0,
- "property2": 0
}Sample request (this returns a list of dates on which the SMA Utility schedule was built):
GET /api/dailyschedules/dates?name=SMA Utility
| IncludeAll | boolean Flag to include schedule properties, details, and events |
| IncludeProperties | boolean Flag to include schedule properties |
| IncludeDetails | boolean Flag to include schedule details |
| IncludeEvents | boolean Flag to include schedule events |
| uids | string |
| SortOrders | Array of strings Daily schedule sort order |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] Daily schedule dates to include |
| ScheduleCategories | Array of strings Daily schedule categories to include |
| Ids | string |
| Name | string The schedule name (Can accept ? and * wildcards) |
| Status | string The schedule status |
| Categories | string |
| FailedJobs | boolean |
| Offset | integer <int32> Retrieves records beginning at this record number |
| Limit | integer <int32> Limits the results being fetched. |
| Path | string Daily schedule path (Can accept ? and * wildcards) |
| SortBy | string Options to sort daily schedule by |
| Dates | string |
[- "string"
]Sample request (this returns the details for daily schedules having id '20221228|1|1'):
GET /api/dailyschedules/20221228|1|1/details
| id required | string The daily schedule id |
{- "documentation": "string",
- "deployInformation": {
- "description": "string",
- "version": "string",
- "date": "string",
- "user": "string"
}
}Sample request (this returns the daily schedule having id '20221228|1|1'):
GET /api/dailyschedules/20221228|1|1
| id required | string The daily schedule id |
{- "property1": 0,
- "property2": 0
}Sample request (Updates the daily schedule having id '20221228|1|1'):
PUT /api/dailyschedules/20221228|1|1
[
{
"id": "20221228|1|1",
"definedStartTime": "2022-12-28T00:00:00.0000000-06:00",
"name": "SMAUtility",
"instance": 1,
"date": "2022-12-28T00:00:00.0000000-06:00",
"path": "SMAUtility",
"workWeek": 5
}
]
| id required | string The daily schedule id |
The daily schedule to update
| uid | integer or null <int64> The unique id |
Array of objects or null (InstanceProperty) List of instance properties | |
| dateAsInteger | integer <int32> |
| id | string or null The daily schedule id |
| masterId | integer <int32> The schedule id |
object (DailyScheduleDetails) | |
object (ComputedTime) | |
| definedStartTime | string or null The defined start time |
| endTime | string or null The end time |
| name | string or null The schedule name |
object (ScheduleStatus) | |
| instance | integer or null <int32> The schedule instance number |
| duration | integer or null <int64> The duration in seconds |
| date | string or null The schedule build date |
| path | string or null The schedule path |
| containerJobId | string or null |
| workWeek | integer <int32> The number of workweek days |
Array of objects or null (ScheduleJobEventModel) The daily schedule events |
{- "uid": 0,
- "instanceProperties": [
- {
- "key": "string",
- "value": "string"
}
], - "dateAsInteger": 0,
- "id": "string",
- "masterId": 0,
- "details": {
- "documentation": "string",
- "deployInformation": {
- "description": "string",
- "version": "string",
- "date": "string",
- "user": "string"
}
}, - "computedStartTime": {
- "time": "string",
- "isEstimated": true,
- "programmedFor": "string",
- "consideredLateAt": "string",
- "latestStart": "string"
}, - "definedStartTime": "string",
- "endTime": "string",
- "name": "string",
- "status": {
- "id": 0,
- "description": "string",
- "category": "string",
- "containsFailedJobs": true
}, - "instance": 0,
- "duration": 0,
- "date": "string",
- "path": "string",
- "containerJobId": "string",
- "workWeek": 0,
- "events": [
- {
- "id": 0,
- "user": {
- "id": 32767,
- "name": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "scheduleId": "string"
}
]
}{- "uid": 0,
- "instanceProperties": [
- {
- "key": "string",
- "value": "string"
}
], - "dateAsInteger": 0,
- "id": "string",
- "masterId": 0,
- "details": {
- "documentation": "string",
- "deployInformation": {
- "description": "string",
- "version": "string",
- "date": "string",
- "user": "string"
}
}, - "computedStartTime": {
- "time": "string",
- "isEstimated": true,
- "programmedFor": "string",
- "consideredLateAt": "string",
- "latestStart": "string"
}, - "definedStartTime": "string",
- "endTime": "string",
- "name": "string",
- "status": {
- "id": 0,
- "description": "string",
- "category": "string",
- "containsFailedJobs": true
}, - "instance": 0,
- "duration": 0,
- "date": "string",
- "path": "string",
- "containerJobId": "string",
- "workWeek": 0,
- "events": [
- {
- "id": 0,
- "user": {
- "id": 32767,
- "name": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "scheduleId": "string"
}
]
}Sample request (this returns the details for daily schedules having name 'SMA Utility'):
GET /api/dailyschedules?name=SMA Utility
| IncludeAll | boolean Flag to include schedule properties, details, and events |
| IncludeProperties | boolean Flag to include schedule properties |
| IncludeDetails | boolean Flag to include schedule details |
| IncludeEvents | boolean Flag to include schedule events |
| uids | string |
| SortOrders | Array of strings Daily schedule sort order |
| ScheduleDates | Array of integers <int32> [ items <int32 > ] Daily schedule dates to include |
| ScheduleCategories | Array of strings Daily schedule categories to include |
| Ids | string |
| Name | string The schedule name (Can accept ? and * wildcards) |
| Status | string The schedule status |
| Categories | string |
| FailedJobs | boolean |
| Offset | integer <int32> Retrieves records beginning at this record number |
| Limit | integer <int32> Limits the results being fetched. |
| Path | string Daily schedule path (Can accept ? and * wildcards) |
| SortBy | string Options to sort daily schedule by |
| Dates | string |
[- {
- "uid": 0,
- "instanceProperties": [
- {
- "key": "string",
- "value": "string"
}
], - "dateAsInteger": 0,
- "id": "string",
- "masterId": 0,
- "details": {
- "documentation": "string",
- "deployInformation": {
- "description": "string",
- "version": "string",
- "date": "string",
- "user": "string"
}
}, - "computedStartTime": {
- "time": "string",
- "isEstimated": true,
- "programmedFor": "string",
- "consideredLateAt": "string",
- "latestStart": "string"
}, - "definedStartTime": "string",
- "endTime": "string",
- "name": "string",
- "status": {
- "id": 0,
- "description": "string",
- "category": "string",
- "containsFailedJobs": true
}, - "instance": 0,
- "duration": 0,
- "date": "string",
- "path": "string",
- "containerJobId": "string",
- "workWeek": 0,
- "events": [
- {
- "id": 0,
- "user": {
- "id": 32767,
- "name": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "scheduleId": "string"
}
]
}
]Sample request (this returns the properties for daily schedules having id '20221228|1|1'):
GET /api/dailyschedules/20221228|1|1/properties/
| id required | string The daily schedule id |
[- {
- "key": "string",
- "value": "string"
}
]Sample request (Adds a property to the daily schedule having id '20221228|1|1'):
POST /api/dailyschedules/20221228|1|1/properties
{
"key": "prop1",
"value": "updatedValue"
}
| id required | string The daily schedule id |
The instance properties to add
| key | string or null |
| value | string or null |
{- "key": "string",
- "value": "string"
}{- "property1": 0,
- "property2": 0
}Sample request (Gets the property having key 'prop1' on the daily schedule having id '20221228|1|1'):
GET /api/dailyschedules/20221228|1|1/properties/prop1
| id required | string The daily schedule id |
| name required | string The name of the property |
{- "key": "string",
- "value": "string"
}Sample request (Updates the property having key 'prop1' from the daily schedule having id '20221228|1|1'):
PUT /api/dailyschedules/20221228|1|1/properties/prop1
{
"key": "prop1",
"value": "updatedValue"
}
| id required | string The daily schedule id |
| name required | string The name of the instance property to update |
The instance property to update
| key | string or null |
| value | string or null |
{- "key": "string",
- "value": "string"
}{- "key": "string",
- "value": "string"
}Sample request (Deletes the property having key 'prop1' from the daily schedule having id '20221228|1|1'):
DELETE /api/dailyschedules/20221228|1|1/properties/prop1
| id required | string The daily schedule id |
| name required | string The name of the property to delete |
Sample request:
GET /api/dailyvisionworkspaces/1
| id required | integer <int32> Workspace id - must be 1. |
| DayOffset | integer <int32> Offset in days from today |
| IncludeCardsWithoutStatus | boolean Flag to include cards without status |
The OpCon.Api.Data.Services.QueuedDelete.QueuedDeleteRequest request containing one or more request items.
required | Array of objects (QueuedDeleteRequestItem) |
{- "items": [
- {
- "entityType": 0,
- "id": "string"
}
]
}Sample request (this returns the department with id = 1):
GET /api/departments/1
| id required | integer <int32> The id of the department you want to get |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}Sample request (this updates the department): PUT /api/calendar/1
{
"id": 1,
"name": "updatedDepartment",
"documentation": "updated documentation"
}
| id required | integer <int32> The department id |
| id | integer <int32> |
| name | string or null The name of the department |
| documentation | string or null |
object (DepartmentAssociations) | |
| scheduleId | integer or null <int32> |
| scheduleName | string or null |
| jobName | string or null |
| dailyScheduleId | integer <int32> |
| dailyScheduleName | string or null |
| dailyJobName | string or null |
| dailyJobDate | integer <int32> |
| role | string or null |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}{- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}Sample request (this returns a list of departments by name in descending order):
GET /api/departments?sortby=name:desc
| Name | string The name of the department to fetch |
| Limit | integer <int32> Limit the number of records to fetch |
| Offset | integer <int32> Offset the number of records being fetched |
| Ids | string List of unique identifiers to retrieve |
| SortOrders | Array of strings Ordering options |
| BasicDetails | boolean Flag to indicate to only return name and id data for the departments |
| HasAdminAccess | boolean Flag for admin access |
| AccessibleDepartments | Array of integers <int32> [ items <int32 > ] |
| SortBy | string Option to sort values by different parameter fields |
[- {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}
]Sample request (this creates a new department): POST /api/departments { "name": "deptName", "documentation": "about this department" }
| id | integer <int32> |
| name | string or null The name of the department |
| documentation | string or null |
object (DepartmentAssociations) | |
| scheduleId | integer or null <int32> |
| scheduleName | string or null |
| jobName | string or null |
| dailyScheduleId | integer <int32> |
| dailyScheduleName | string or null |
| dailyJobName | string or null |
| dailyJobDate | integer <int32> |
| role | string or null |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}{- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}Sample request (this returns a list of escalations tied to a user in descending order):
GET /api/escalations
| userId required | integer <int32> |
[- {
- "escalationId": 0,
- "escalationRuleId": 0,
- "escalationSequence": 0,
- "status": "string",
- "escalationStatus": 0,
- "attempts": 0,
- "timeMessageSent": "string",
- "lastMessageSent": "2019-08-24T14:15:22Z",
- "actionMessage": "string",
- "notification": {
- "actionMessage": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string"
}, - "machine": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "name": "string",
- "jobNumber": 0
}, - "triggerName": "string",
- "action": "string",
- "actionID": 0,
- "actionName": "string",
- "groupOfId": 0,
- "actionIncludeId": true,
- "notifyDelimiter": "string"
}, - "triggerName": "string",
- "acknowledgedBy": "string",
- "acknowledgeTime": "2019-08-24T14:15:22Z",
- "acknowledgeHostName": "string",
- "acknowledged": true,
- "actionIncludeId": "string",
- "scheduleDate": "string",
- "scheduleName": "string",
- "instanceNumber": 0,
- "jobName": "string",
- "machineName": "string",
- "actionId": 0,
- "actionName": "string",
- "groupOfId": 0,
- "notifyDelimiter": "string",
- "actionType": 0,
- "matchEscalation": { }
}
]Sample request (this updates the escalation):
PUT /api/users/0/escalations/
[
{
"escalationId": 1,
"acknowledged": true
},
{
"escalationId": 2,
"acknowledged": true
}
]
| userId required | integer <int32> The user unique identifier |
Collection of escalations
| escalationId | integer <int32> The unique identifier of the escalation |
| escalationRuleId | integer <int32> The unique rule identifier |
| escalationSequence | integer <int32> The escalation sequence level |
| status | string or null The status assigned to the escalation |
| escalationStatus | integer <int32> |
| attempts | integer or null <int32> The amont of attempts |
| timeMessageSent | string or null Time stamp for last message sent |
| lastMessageSent | string or null <date-time> |
| actionMessage | string or null |
object (EscalationNotification) | |
| triggerName | string or null |
| acknowledgedBy | string or null User who acknowledged the escalation |
| acknowledgeTime | string or null <date-time> The time the escalation was acknowledged |
| acknowledgeHostName | string or null The host name that acknowledged the notification |
| acknowledged | boolean Flag describing whether the notification was acknowledged |
| actionIncludeId | string or null |
| scheduleDate | string or null |
| scheduleName | string or null |
| instanceNumber | integer <int32> |
| jobName | string or null |
| machineName | string or null |
| actionId | integer <int32> |
| actionName | string or null |
| groupOfId | integer <int32> |
| notifyDelimiter | string or null |
| actionType | integer or null <int32> |
| matchEscalation | object (Escalation) Recursive |
[- {
- "escalationId": 0,
- "escalationRuleId": 0,
- "escalationSequence": 0,
- "status": "string",
- "escalationStatus": 0,
- "attempts": 0,
- "timeMessageSent": "string",
- "lastMessageSent": "2019-08-24T14:15:22Z",
- "actionMessage": "string",
- "notification": {
- "actionMessage": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string"
}, - "machine": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "name": "string",
- "jobNumber": 0
}, - "triggerName": "string",
- "action": "string",
- "actionID": 0,
- "actionName": "string",
- "groupOfId": 0,
- "actionIncludeId": true,
- "notifyDelimiter": "string"
}, - "triggerName": "string",
- "acknowledgedBy": "string",
- "acknowledgeTime": "2019-08-24T14:15:22Z",
- "acknowledgeHostName": "string",
- "acknowledged": true,
- "actionIncludeId": "string",
- "scheduleDate": "string",
- "scheduleName": "string",
- "instanceNumber": 0,
- "jobName": "string",
- "machineName": "string",
- "actionId": 0,
- "actionName": "string",
- "groupOfId": 0,
- "notifyDelimiter": "string",
- "actionType": 0,
- "matchEscalation": { }
}
]{- "escalationId": 0,
- "escalationRuleId": 0,
- "escalationSequence": 0,
- "status": "string",
- "escalationStatus": 0,
- "attempts": 0,
- "timeMessageSent": "string",
- "lastMessageSent": "2019-08-24T14:15:22Z",
- "actionMessage": "string",
- "notification": {
- "actionMessage": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string"
}, - "machine": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "name": "string",
- "jobNumber": 0
}, - "triggerName": "string",
- "action": "string",
- "actionID": 0,
- "actionName": "string",
- "groupOfId": 0,
- "actionIncludeId": true,
- "notifyDelimiter": "string"
}, - "triggerName": "string",
- "acknowledgedBy": "string",
- "acknowledgeTime": "2019-08-24T14:15:22Z",
- "acknowledgeHostName": "string",
- "acknowledged": true,
- "actionIncludeId": "string",
- "scheduleDate": "string",
- "scheduleName": "string",
- "instanceNumber": 0,
- "jobName": "string",
- "machineName": "string",
- "actionId": 0,
- "actionName": "string",
- "groupOfId": 0,
- "notifyDelimiter": "string",
- "actionType": 0,
- "matchEscalation": { }
}Sample request (this returns the escalation with id = 1 for user id = 0):
GET /api/users/0/escalation/1
| userId required | integer <int32> |
| escalationId required | integer <int32> The unique identifier of escalation to retrieve |
{- "escalationId": 0,
- "escalationRuleId": 0,
- "escalationSequence": 0,
- "status": "string",
- "escalationStatus": 0,
- "attempts": 0,
- "timeMessageSent": "string",
- "lastMessageSent": "2019-08-24T14:15:22Z",
- "actionMessage": "string",
- "notification": {
- "actionMessage": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string"
}, - "machine": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "name": "string",
- "jobNumber": 0
}, - "triggerName": "string",
- "action": "string",
- "actionID": 0,
- "actionName": "string",
- "groupOfId": 0,
- "actionIncludeId": true,
- "notifyDelimiter": "string"
}, - "triggerName": "string",
- "acknowledgedBy": "string",
- "acknowledgeTime": "2019-08-24T14:15:22Z",
- "acknowledgeHostName": "string",
- "acknowledged": true,
- "actionIncludeId": "string",
- "scheduleDate": "string",
- "scheduleName": "string",
- "instanceNumber": 0,
- "jobName": "string",
- "machineName": "string",
- "actionId": 0,
- "actionName": "string",
- "groupOfId": 0,
- "notifyDelimiter": "string",
- "actionType": 0,
- "matchEscalation": { }
}Sample request (this updates the escalation):
PUT /api/users/0/escalations/1
{
"escalationId": 1,
"acknowledged": true
}
| userId required | integer <int32> The user unique identifier |
| escalationId required | integer <int32> The escalation unique identifier |
The escalation
| escalationId | integer <int32> The unique identifier of the escalation |
| escalationRuleId | integer <int32> The unique rule identifier |
| escalationSequence | integer <int32> The escalation sequence level |
| status | string or null The status assigned to the escalation |
| escalationStatus | integer <int32> |
| attempts | integer or null <int32> The amont of attempts |
| timeMessageSent | string or null Time stamp for last message sent |
| lastMessageSent | string or null <date-time> |
| actionMessage | string or null |
object (EscalationNotification) | |
| triggerName | string or null |
| acknowledgedBy | string or null User who acknowledged the escalation |
| acknowledgeTime | string or null <date-time> The time the escalation was acknowledged |
| acknowledgeHostName | string or null The host name that acknowledged the notification |
| acknowledged | boolean Flag describing whether the notification was acknowledged |
| actionIncludeId | string or null |
| scheduleDate | string or null |
| scheduleName | string or null |
| instanceNumber | integer <int32> |
| jobName | string or null |
| machineName | string or null |
| actionId | integer <int32> |
| actionName | string or null |
| groupOfId | integer <int32> |
| notifyDelimiter | string or null |
| actionType | integer or null <int32> |
| matchEscalation | object (Escalation) Recursive |
{- "escalationId": 0,
- "escalationRuleId": 0,
- "escalationSequence": 0,
- "status": "string",
- "escalationStatus": 0,
- "attempts": 0,
- "timeMessageSent": "string",
- "lastMessageSent": "2019-08-24T14:15:22Z",
- "actionMessage": "string",
- "notification": {
- "actionMessage": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string"
}, - "machine": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "name": "string",
- "jobNumber": 0
}, - "triggerName": "string",
- "action": "string",
- "actionID": 0,
- "actionName": "string",
- "groupOfId": 0,
- "actionIncludeId": true,
- "notifyDelimiter": "string"
}, - "triggerName": "string",
- "acknowledgedBy": "string",
- "acknowledgeTime": "2019-08-24T14:15:22Z",
- "acknowledgeHostName": "string",
- "acknowledged": true,
- "actionIncludeId": "string",
- "scheduleDate": "string",
- "scheduleName": "string",
- "instanceNumber": 0,
- "jobName": "string",
- "machineName": "string",
- "actionId": 0,
- "actionName": "string",
- "groupOfId": 0,
- "notifyDelimiter": "string",
- "actionType": 0,
- "matchEscalation": { }
}{- "escalationId": 0,
- "escalationRuleId": 0,
- "escalationSequence": 0,
- "status": "string",
- "escalationStatus": 0,
- "attempts": 0,
- "timeMessageSent": "string",
- "lastMessageSent": "2019-08-24T14:15:22Z",
- "actionMessage": "string",
- "notification": {
- "actionMessage": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string"
}, - "machine": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "name": "string",
- "jobNumber": 0
}, - "triggerName": "string",
- "action": "string",
- "actionID": 0,
- "actionName": "string",
- "groupOfId": 0,
- "actionIncludeId": true,
- "notifyDelimiter": "string"
}, - "triggerName": "string",
- "acknowledgedBy": "string",
- "acknowledgeTime": "2019-08-24T14:15:22Z",
- "acknowledgeHostName": "string",
- "acknowledged": true,
- "actionIncludeId": "string",
- "scheduleDate": "string",
- "scheduleName": "string",
- "instanceNumber": 0,
- "jobName": "string",
- "machineName": "string",
- "actionId": 0,
- "actionName": "string",
- "groupOfId": 0,
- "notifyDelimiter": "string",
- "actionType": 0,
- "matchEscalation": { }
}| Name | string |
| Ids | Array of integers <int32> [ items <int32 > ] |
[- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "userId": 0,
- "userSignon": "string"
}
], - "escalationRuleCrossReferences": [
- {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
]
}
]Sample request (this creates a new escalation group):
POST /api/escalationgroups
{
"Name": "Testing",
"Users": [
{
"UserId": 0,
"UserSignon": "ocadm"
},
{
"UserId": -1,
"UserSignon": "[[Token]]"
}
]
}
| name required | string non-empty |
required | Array of objects (EscalationGroupUserModel) non-empty |
{- "name": "string",
- "users": [
- {
- "userId": 0,
- "name": "string",
- "userSignon": "string"
}
]
}{- "id": 0,
- "name": "string",
- "users": [
- {
- "userId": 0,
- "userSignon": "string"
}
], - "escalationRuleCrossReferences": [
- {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
]
}{- "id": 0,
- "name": "string",
- "users": [
- {
- "userId": 0,
- "userSignon": "string"
}
], - "escalationRuleCrossReferences": [
- {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
]
}Sample request (this deletes the escalation group):
DELETE /api/escalationGroups/1
| id required | integer <int32> The unique identifier of the escalation group |
{- "id": 0,
- "name": "string",
- "users": [
- {
- "userId": 0,
- "userSignon": "string"
}
], - "escalationRuleCrossReferences": [
- {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
]
}Sample request (this updates the escalation group):
PUT /api/escalationgroups/1
{
"Name": "Testing",
"Users": [
{
"UserId": 0,
"UserSignon": "ocadm"
},
{
"UserId": -1,
"UserSignon": "[[UserToken]]"
}
]
}
| groupId required | integer <int32> The escalation group id |
| name required | string non-empty |
required | Array of objects (EscalationGroupUserModel) non-empty |
{- "name": "string",
- "users": [
- {
- "userId": 0,
- "name": "string",
- "userSignon": "string"
}
]
}{- "id": 0,
- "name": "string",
- "users": [
- {
- "userId": 0,
- "userSignon": "string"
}
], - "escalationRuleCrossReferences": [
- {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
]
}| Name | string |
| Ids | Array of integers <int32> [ items <int32 > ] |
[- {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
] Sample request (this creates a new escalation rule):
POST: api/escalationRules
{ "name": "escrule", // name is required "sequences": [ // at least one sequence is required { "sequence": 1, // all fields are required for a sequence "attempts": 1, "interval": 1, "group": { "id": 1 // group name is not required but an id is } } }
| name required | string non-empty |
required | Array of objects (EscalationSequenceModel) non-empty |
{- "name": "string",
- "sequences": [
- {
- "sequence": 1,
- "attempts": 1,
- "interval": 1,
- "group": {
- "id": 1
}
}
]
}{- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}{- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}Sample request (this deletes the escalation rule with id = 1):
DELETE /api/escalationRules/1
| id required | integer <int32> The unique identifier of the escalation rule |
{- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
} Sample request (this updates the escalation rule):
PUT /api/escalationrules/1
{
"id": 3,
"name": "escrule",
"sequences": [
{
"sequence": 1,
"attempts": 1,
"interval": 1,
"group": {
"id": 1,
"name": "group1"
}
}
]
}
| ruleId required | integer <int32> The escalation rule id |
| name required | string non-empty |
required | Array of objects (EscalationSequenceModel) non-empty |
{- "name": "string",
- "sequences": [
- {
- "sequence": 1,
- "attempts": 1,
- "interval": 1,
- "group": {
- "id": 1
}
}
]
}{- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}The token is stored encrypted in the database and must be copied for use by the user. When length is provided, the generated token can only be used for external events. When length is not provided, the generated token can be used to interact with the API and for external events. To receive the token in the response, the user's isExternalTokenDisabled property must be False.
Sample request (this creates a new external token having 20 characters):
POST /api/externaltoken
{
"length": 20
}
| token | string or null |
| length | integer or null <int32> |
{- "token": "string",
- "length": 0
}{- "token": "string",
- "length": 0
}Sample request (this returns a list of feedback values by jobType):
GET /api/feedback?jobType=6
| JobTypeId | integer <int32> |
| Name | string |
[- {
- "id": 0,
- "name": "string"
}
]Sample request:
GET /api/frequencies
| Name | string The name of the frequency to fetch |
| Skdid | integer <int32> The Schedule ID to fetch frequencies for |
| Limit | integer <int32> Limit the number of records to fetch |
| Offset | integer <int32> Offset the number of records being fetched |
| SortOrders | Array of strings Ordering options |
| Aobn | string The aobn of the frequencies to fetch |
| Calendar | string The Calendar Name of the frequencies to fetch |
| InUse | integer <int32> |
| HasAdminAccess | boolean Flag for admin access |
| IgnoreCase | boolean Flag for case insensitive search |
| IncludeAssociations | boolean Flag to specify if associations will be included in the frequencies fetched |
| DuplicateFrequencyCodes | boolean Flag to specify frequencies returned will be only those with duplicate settings. |
| BasicDetails | boolean Flag to specify frequencies will be returned only with basic details. |
| SortBy | string Option to sort values by different parameter fields |
[- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
]Sample request:
POST /api/frequencies
{
"name": "",
"settings": {
"dayOffset": 0,
"aobn": "OnDate",
"frequencyType": "BegOfPeriod",
"period": "Week",
"dayType": "Working",
"calendar": "<None>"
}
}
The frequency to add.
| name | string or null The name of the frequency |
| frequencyCode | integer <int32> The frequency code |
| inUse | integer or null <int32> The quantity of schedules and/or jobs using the frequency |
object (FrequencySettings) Frequency settings |
{- "name": "string",
- "frequencyCode": 0,
- "inUse": 0,
- "settings": {
- "aobn": "string",
- "frequencyType": "string",
- "period": "string",
- "occurrence": "string",
- "daysOfTheWeek": { },
- "dayType": "string",
- "interval": "string",
- "fixedIntervalDays": { },
- "intervalDays": 0,
- "_calendarId": 0,
- "calendar": "string"
}
}{- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}Sample request (this returns a list of frequencies by name in descending order):
GET /api/frequencies/frequencyName?name:desc
| name required | string The name of the frequency |
{- "name": "string",
- "frequencyCode": 0,
- "inUse": 0,
- "settings": {
- "aobn": "string",
- "frequencyType": "string",
- "period": "string",
- "occurrence": "string",
- "daysOfTheWeek": { },
- "dayType": "string",
- "interval": "string",
- "fixedIntervalDays": { },
- "intervalDays": 0,
- "_calendarId": 0,
- "calendar": "string"
}
}Sample request:
PUT /api/frequencies/frequencyName/settings
{
"name": "frequencyName",
"settings": {
"dayOffset": 0,
"aobn": "OnDate",
"frequencyType": "AnnualPlan",
"calendar": {
"name": "Master Holiday"
}
}
}
| name required | string The name of the frequency to update |
The frequency to update
| name | string or null The name of the frequency |
| frequencyCode | integer <int32> The frequency code |
| inUse | integer or null <int32> The quantity of schedules and/or jobs using the frequency |
object (FrequencySettings) Frequency settings |
{- "name": "string",
- "frequencyCode": 0,
- "inUse": 0,
- "settings": {
- "aobn": "string",
- "frequencyType": "string",
- "period": "string",
- "occurrence": "string",
- "daysOfTheWeek": { },
- "dayType": "string",
- "interval": "string",
- "fixedIntervalDays": { },
- "intervalDays": 0,
- "_calendarId": 0,
- "calendar": "string"
}
}{- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}Sample request:
POST /api/frequencies/frequencyName/settings
{
"year": 2023,
"scheduleId": 1,
"forecastType": "Job",
"frequencies": [
{
"frequencyName": "",
"frequencyType": "OnOccurrence",
"priority": 0,
"settings": {
"dayOffset": 0,
"aobn": "OnDate",
"frequencyType": "BegOfPeriod",
"period": "Week",
"dayType": "Working",
"calendar": "<None>"
},
"advancedFrequencySettings": {
"includeInScheduleOn": "03-16-2023"
}
}]
}
The frequency forecast request
| year required | integer <int32> The year to forecast. |
| scheduleId | integer <int32> The schedule id to forecast. Required when forecast type is 'Schedule' or 'Job'. |
| forecastType required | integer <int32> (ForecastTypes) Enum: 0 1 2 3 |
required | Array of objects (ForecastRequestFrequency) The list of frequencies to include in the forecast. |
{- "year": 0,
- "scheduleId": 0,
- "forecastType": 0,
- "frequencies": [
- {
- "priority": 0,
- "settings": {
- "aobn": "string",
- "frequencyType": "string",
- "period": "string",
- "occurrence": "string",
- "daysOfTheWeek": { },
- "dayType": "string",
- "interval": "string",
- "fixedIntervalDays": { },
- "intervalDays": 0,
- "_calendarId": 0,
- "calendar": "string"
}, - "advancedFrequencySettings": {
- "startSchedulingOn": "string",
- "endSchedulingOn": "string",
- "includeInScheduleOn": [
- "string"
], - "excludeFromScheduleOn": [
- "string"
], - "excludeMonthFromSchedule": [
- "Unknown"
]
}, - "frequencyName": "string"
}
]
}[- {
- "frequencyName": "string",
- "priority": 0,
- "date": "2019-08-24T14:15:22Z",
- "type": "string"
}
]Sample request:
GET /api/frequencyNames
| Name | string The name of the frequency to fetch |
| Skdid | integer <int32> The Schedule ID to fetch frequencies for |
| Limit | integer <int32> Limit the number of records to fetch |
| Offset | integer <int32> Offset the number of records being fetched |
| SortOrders | Array of strings Ordering options |
| Aobn | string The aobn of the frequencies to fetch |
| Calendar | string The Calendar Name of the frequencies to fetch |
| InUse | integer <int32> |
| HasAdminAccess | boolean Flag for admin access |
| IgnoreCase | boolean Flag for case insensitive search |
| IncludeAssociations | boolean Flag to specify if associations will be included in the frequencies fetched |
| DuplicateFrequencyCodes | boolean Flag to specify frequencies returned will be only those with duplicate settings. |
| BasicDetails | boolean Flag to specify frequencies will be returned only with basic details. |
| SortBy | string Option to sort values by different parameter fields |
[- "string"
]Sample request (this returns a list of global properties by name in descending order): GET /api/globalproperties?sortby=name:desc
| Limit | integer <int32> |
| Offset | integer <int32> |
| Name | string |
| Encrypted | string |
| Ids | string |
| Value | string |
| NameOrValue | string |
| NoPatternValue | boolean |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
{- "id": 0,
- "name": "string",
- "value": "string",
- "documentation": "string",
- "encrypted": true,
- "fullName": "string",
- "category": "string",
- "isPatternValue": true,
- "type": "string",
- "isEncrypted": "string"
}Sample request (This creates a new global property): POST /api/globalproperties { "name": "GP1", "value": "GP Value" }
The global property
| id | integer or null <int32> Id for the global property |
| name | string or null Name for the global property |
| value | string or null Text value for the global property |
| documentation | string or null Documentation for the global property |
| encrypted | boolean Specifies if the global property is encrypted |
| fullName | string or null Full Name of the global property |
| category | string or null Category for the global property (GI, MI, SI, JI) |
| isPatternValue | boolean Specifies whether the global property's values is a pattern |
| type | string or null Global property type (System, User) |
| isEncrypted | string or null |
{- "id": 0,
- "name": "string",
- "value": "string",
- "documentation": "string",
- "encrypted": true,
- "fullName": "string",
- "category": "string",
- "isPatternValue": true,
- "type": "string",
- "isEncrypted": "string"
}{- "id": 0,
- "name": "string",
- "value": "string",
- "documentation": "string",
- "encrypted": true,
- "fullName": "string",
- "category": "string",
- "isPatternValue": true,
- "type": "string",
- "isEncrypted": "string"
}Sample request (this returns a global property with id = 1): GET /api/globalproperties/1
| id required | integer <int32> The id of the global property you want to get |
{- "id": 0,
- "name": "string",
- "value": "string",
- "documentation": "string",
- "encrypted": true,
- "fullName": "string",
- "category": "string",
- "isPatternValue": true,
- "type": "string",
- "isEncrypted": "string"
}Sample request (this updates the global property): POST /api/globalproperties/1 { "id": 1, "name": "GP1", "value": "GP Value" }
| id required | integer <int32> The global property id |
The global property
| id | integer or null <int32> Id for the global property |
| name | string or null Name for the global property |
| value | string or null Text value for the global property |
| documentation | string or null Documentation for the global property |
| encrypted | boolean Specifies if the global property is encrypted |
| fullName | string or null Full Name of the global property |
| category | string or null Category for the global property (GI, MI, SI, JI) |
| isPatternValue | boolean Specifies whether the global property's values is a pattern |
| type | string or null Global property type (System, User) |
| isEncrypted | string or null |
{- "id": 0,
- "name": "string",
- "value": "string",
- "documentation": "string",
- "encrypted": true,
- "fullName": "string",
- "category": "string",
- "isPatternValue": true,
- "type": "string",
- "isEncrypted": "string"
}{- "id": 0,
- "name": "string",
- "value": "string",
- "documentation": "string",
- "encrypted": true,
- "fullName": "string",
- "category": "string",
- "isPatternValue": true,
- "type": "string",
- "isEncrypted": "string"
}Sample request (this returns a list of job histories from 03-16-2021 to 03-17-2021):
GET /api/jobhistories?from=03-16-2021&to=03-17-2021
| From | string |
| To | string |
| ScheduleName | string |
| JobName | string |
| Duration | integer <int32> |
| JobStatusIds | string |
| RunDate | string |
| SchedulePath | string |
| MachineName | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| IncludeSummary | boolean |
| PermissionIds | string |
| UniqueId | string |
| JobInstanceNumber | integer <int32> |
| UniqueJobIds | string |
{- "exitDescription": "string",
- "jobTerminationDouble": 0,
- "jobStartDouble": 0,
- "parentJobName": "string",
- "frequencyName": "string",
- "departmentId": 0,
- "scheduleDate": 0,
- "scheduleId": 0,
- "schedulePath": "string",
- "scheduleName": "string",
- "uid": 0,
- "fcMaxValues": 0,
- "id": "string",
- "jobName": "string",
- "jobNumber": 0,
- "jobType": {
- "id": 0,
- "description": "string"
}, - "scheduleHistory": {
- "masterId": 0,
- "date": "string",
- "name": "string",
- "path": "string"
}, - "jobStartTime": "string",
- "jobStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}, - "jobTermination": "string",
- "duration": 0,
- "machine": {
- "name": "string",
- "id": 0
}, - "exitCode": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "tokenReplacementValues": [
- {
- "token": "string",
- "value": "string"
}
], - "jobStatusDescriptions": [
- "string"
], - "jorsRequestParameters": "string",
- "tags": [
- "string"
], - "agentStartCommand": "string",
- "detailMessages": [
- "string"
], - "jobHistoryNotes": [
- "string"
], - "tokenValues": [
- "string"
], - "fileTransferJobStatusDescriptions": [
- "string"
], - "windowsJobStatusDescriptions": [
- "string"
], - "openVMSJobStatusDescriptions": [
- "string"
], - "ibMiJobStatusDescriptions": [
- "string"
], - "unixJobStatusDescriptions": [
- "string"
], - "oS2200JobStatusDescriptions": [
- "string"
], - "vseJobStatusDescriptions": [
- "string"
], - "mcpJobStatusDescriptions": [
- "string"
], - "bisJobStatusDescriptions": [
- "string"
], - "zOSJobStatusDescriptions": [
- "string"
], - "sapR3_CRMJobStatusDescriptions": [
- "string"
], - "sapbwJobStatusDescriptions": [
- "string"
], - "containerJobStatusDescriptions": [
- "string"
], - "jeeJobStatusDescriptions": [
- "string"
], - "javaJobStatusDescriptions": [
- "string"
], - "tuxedoARTJobStatusDescriptions": [
- "string"
], - "easeJobStatusDescriptions": [
- "string"
], - "asyscoAMTJobStatusDescriptions": [
- "string"
], - "sqlJobStatusDescriptions": [
- "string"
]
}Sample request (returns a list of notes for the job history with the specified job id):
GET /api/jobhistories/2021|03|16|someJob/notes
| id required | string |
{- "exitDescription": "string",
- "jobTerminationDouble": 0,
- "jobStartDouble": 0,
- "parentJobName": "string",
- "frequencyName": "string",
- "departmentId": 0,
- "scheduleDate": 0,
- "scheduleId": 0,
- "schedulePath": "string",
- "scheduleName": "string",
- "uid": 0,
- "fcMaxValues": 0,
- "id": "string",
- "jobName": "string",
- "jobNumber": 0,
- "jobType": {
- "id": 0,
- "description": "string"
}, - "scheduleHistory": {
- "masterId": 0,
- "date": "string",
- "name": "string",
- "path": "string"
}, - "jobStartTime": "string",
- "jobStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}, - "jobTermination": "string",
- "duration": 0,
- "machine": {
- "name": "string",
- "id": 0
}, - "exitCode": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "tokenReplacementValues": [
- {
- "token": "string",
- "value": "string"
}
], - "jobStatusDescriptions": [
- "string"
], - "jorsRequestParameters": "string",
- "tags": [
- "string"
], - "agentStartCommand": "string",
- "detailMessages": [
- "string"
], - "jobHistoryNotes": [
- "string"
], - "tokenValues": [
- "string"
], - "fileTransferJobStatusDescriptions": [
- "string"
], - "windowsJobStatusDescriptions": [
- "string"
], - "openVMSJobStatusDescriptions": [
- "string"
], - "ibMiJobStatusDescriptions": [
- "string"
], - "unixJobStatusDescriptions": [
- "string"
], - "oS2200JobStatusDescriptions": [
- "string"
], - "vseJobStatusDescriptions": [
- "string"
], - "mcpJobStatusDescriptions": [
- "string"
], - "bisJobStatusDescriptions": [
- "string"
], - "zOSJobStatusDescriptions": [
- "string"
], - "sapR3_CRMJobStatusDescriptions": [
- "string"
], - "sapbwJobStatusDescriptions": [
- "string"
], - "containerJobStatusDescriptions": [
- "string"
], - "jeeJobStatusDescriptions": [
- "string"
], - "javaJobStatusDescriptions": [
- "string"
], - "tuxedoARTJobStatusDescriptions": [
- "string"
], - "easeJobStatusDescriptions": [
- "string"
], - "asyscoAMTJobStatusDescriptions": [
- "string"
], - "sqlJobStatusDescriptions": [
- "string"
]
}Sample request (updates the history job note for the job with the specified id):
PUT /api/jobhistories/2021|03|16|jobName/notes
| id required | string The job id |
The job history note to update
| jobId | string or null |
Array of objects or null (Note) |
{- "jobId": "string",
- "notes": [
- {
- "joinedString": "string",
- "id": 0,
- "date": "string",
- "user": "string",
- "value": "string"
}
]
}{- "exitDescription": "string",
- "jobTerminationDouble": 0,
- "jobStartDouble": 0,
- "parentJobName": "string",
- "frequencyName": "string",
- "departmentId": 0,
- "scheduleDate": 0,
- "scheduleId": 0,
- "schedulePath": "string",
- "scheduleName": "string",
- "uid": 0,
- "fcMaxValues": 0,
- "id": "string",
- "jobName": "string",
- "jobNumber": 0,
- "jobType": {
- "id": 0,
- "description": "string"
}, - "scheduleHistory": {
- "masterId": 0,
- "date": "string",
- "name": "string",
- "path": "string"
}, - "jobStartTime": "string",
- "jobStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}, - "jobTermination": "string",
- "duration": 0,
- "machine": {
- "name": "string",
- "id": 0
}, - "exitCode": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "tokenReplacementValues": [
- {
- "token": "string",
- "value": "string"
}
], - "jobStatusDescriptions": [
- "string"
], - "jorsRequestParameters": "string",
- "tags": [
- "string"
], - "agentStartCommand": "string",
- "detailMessages": [
- "string"
], - "jobHistoryNotes": [
- "string"
], - "tokenValues": [
- "string"
], - "fileTransferJobStatusDescriptions": [
- "string"
], - "windowsJobStatusDescriptions": [
- "string"
], - "openVMSJobStatusDescriptions": [
- "string"
], - "ibMiJobStatusDescriptions": [
- "string"
], - "unixJobStatusDescriptions": [
- "string"
], - "oS2200JobStatusDescriptions": [
- "string"
], - "vseJobStatusDescriptions": [
- "string"
], - "mcpJobStatusDescriptions": [
- "string"
], - "bisJobStatusDescriptions": [
- "string"
], - "zOSJobStatusDescriptions": [
- "string"
], - "sapR3_CRMJobStatusDescriptions": [
- "string"
], - "sapbwJobStatusDescriptions": [
- "string"
], - "containerJobStatusDescriptions": [
- "string"
], - "jeeJobStatusDescriptions": [
- "string"
], - "javaJobStatusDescriptions": [
- "string"
], - "tuxedoARTJobStatusDescriptions": [
- "string"
], - "easeJobStatusDescriptions": [
- "string"
], - "asyscoAMTJobStatusDescriptions": [
- "string"
], - "sqlJobStatusDescriptions": [
- "string"
]
}| Ids | Array of integers <int32> [ items <int32 > ] |
| Name | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| AutoBuild | boolean |
| MultiInstance | boolean |
| SubSchedule | boolean |
| SortBy | string |
| IncludeDetails | boolean |
| IncludeScheduleHierachy | boolean |
| CaseSensitive | boolean |
| id | integer <int32> |
| name | string or null |
| documentation | string or null |
| isMultiInstance | boolean |
| isSubSchedule | boolean |
| containSubSchedule | boolean |
Array of objects or null (ImpExSubSchedule) | |
| hasJobLevelFrequencies | boolean |
object (WeekDays) | |
object (StartOffset) | |
| useMasterHoliday | boolean |
object (Calendar) A calendar with id, type, Schedule, Dates and name fields | |
| conflictsWithOtherDays | boolean |
object (AutoBuildSettings) | |
object (SingleInstanceProperties) | |
object (MultiInstanceProperties) | |
object (CrossReference) |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "isMultiInstance": true,
- "isSubSchedule": true,
- "containSubSchedule": true,
- "parent": [
- {
- "id": 0,
- "name": "string",
- "hasSubSchedule": true
}
], - "hasJobLevelFrequencies": true,
- "weekDays": {
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": true,
- "sunday": true
}, - "startOffset": {
- "hours": 0,
- "minutes": 0
}, - "useMasterHoliday": true,
- "additionalHolidays": {
- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "conflictsWithOtherDays": true,
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "deleteDaysAgo": 0,
- "buildTime": {
- "hours": 0,
- "minutes": 0
}
}, - "singleInstanceProperties": {
- "properties": [
- {
- "key": "string",
- "value": "string"
}
]
}, - "multiInstanceProperties": {
- "propertiesFor": "string",
- "propertiesList": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "namedInstanceSettingsList": [
- {
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}, - "properties": [
- {
- "key": "string",
- "value": "string"
}
], - "jobExceptions": [
- {
- "jobPattern": {
- "id": 0,
- "pattern": "string"
}, - "exceptionDefinitions": [
- {
- "id": 0,
- "fieldCode": 0,
- "fieldToUpdate": "string",
- "toReplace": "string",
- "newValue": "string",
- "newValueIsExpression": true
}
]
}
]
}
]
}, - "associations": {
- "masterJobs": [
- {
- "scheduleName": "string",
- "jobName": "string"
}
], - "dailyJobs": [
- {
- "dailyJobName": "string",
- "dailyScheduleName": "string",
- "dailyDate": "2019-08-24T14:15:22Z"
}
], - "dailySchedules": [
- {
- "dailyScheduleName": "string",
- "dailyDate": "2019-08-24T14:15:22Z"
}
]
}
}| id required | integer <int32> |
| id | integer <int32> |
| name | string or null |
| documentation | string or null |
| isMultiInstance | boolean |
| isSubSchedule | boolean |
| containSubSchedule | boolean |
Array of objects or null (ImpExSubSchedule) | |
| hasJobLevelFrequencies | boolean |
object (WeekDays) | |
object (StartOffset) | |
| useMasterHoliday | boolean |
object (Calendar) A calendar with id, type, Schedule, Dates and name fields | |
| conflictsWithOtherDays | boolean |
object (AutoBuildSettings) | |
object (SingleInstanceProperties) | |
object (MultiInstanceProperties) | |
object (CrossReference) |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "isMultiInstance": true,
- "isSubSchedule": true,
- "containSubSchedule": true,
- "parent": [
- {
- "id": 0,
- "name": "string",
- "hasSubSchedule": true
}
], - "hasJobLevelFrequencies": true,
- "weekDays": {
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": true,
- "sunday": true
}, - "startOffset": {
- "hours": 0,
- "minutes": 0
}, - "useMasterHoliday": true,
- "additionalHolidays": {
- "id": 0,
- "schedule": {
- "calendar": { },
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "conflictsWithOtherDays": true,
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "deleteDaysAgo": 0,
- "buildTime": {
- "hours": 0,
- "minutes": 0
}
}, - "singleInstanceProperties": {
- "properties": [
- {
- "key": "string",
- "value": "string"
}
]
}, - "multiInstanceProperties": {
- "propertiesFor": "string",
- "propertiesList": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "namedInstanceSettingsList": [
- {
- "namedInstance": {
- "scheduleId": 0,
- "number": 0,
- "id": 0,
- "name": "string"
}, - "properties": [
- {
- "key": "string",
- "value": "string"
}
], - "jobExceptions": [
- {
- "jobPattern": {
- "id": 0,
- "pattern": "string"
}, - "exceptionDefinitions": [
- {
- "id": 0,
- "fieldCode": 0,
- "fieldToUpdate": "string",
- "toReplace": "string",
- "newValue": "string",
- "newValueIsExpression": true
}
]
}
]
}
]
}, - "associations": {
- "masterJobs": [
- {
- "scheduleName": "string",
- "jobName": "string"
}
], - "dailyJobs": [
- {
- "dailyJobName": "string",
- "dailyScheduleName": "string",
- "dailyDate": "2019-08-24T14:15:22Z"
}
], - "dailySchedules": [
- {
- "dailyScheduleName": "string",
- "dailyDate": "2019-08-24T14:15:22Z"
}
]
}
}| id | integer <int32> |
| action | string or null |
| reason | string or null |
| result | string or null |
Array of objects or null (JobStatusItem) | |
| expiryTime | string <date-time> |
{- "id": 0,
- "action": "string",
- "reason": "string",
- "result": "string",
- "jobs": [
- {
- "id": "string",
- "step": "string",
- "rebuildOnRestartIfContainer": true,
- "result": "string",
- "message": "string",
- "status": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}, - "responseId": "string"
}
], - "expiryTime": "2019-08-24T14:15:22Z"
}| id | integer <int32> |
| action | string or null |
| actionType | integer <int32> (ActionType) Enum: 0 1 2 |
| result | string or null |
| message | string or null |
Array of objects or null (JobInstanceActionItem) | |
| expiryTime | string <date-time> |
| requestIds | Array of integers or null <int64> |
| userId | integer <int32> |
{- "id": 0,
- "action": "string",
- "actionType": 0,
- "result": "string",
- "message": "string",
- "jobInstanceActionItems": [
- {
- "id": 0,
- "jorsRequestParameters": "string",
- "result": "string",
- "message": "string",
- "files": [
- "string"
], - "data": "string",
- "requestId": 0
}
], - "expiryTime": "2019-08-24T14:15:22Z",
- "requestIds": [
- 0
], - "userId": 0
}| id | integer <int32> |
| id | integer <int32> |
| action | string or null |
| actionType | integer <int32> (ActionType) Enum: 0 1 2 |
| result | string or null |
| message | string or null |
Array of objects or null (JobInstanceActionItem) | |
| expiryTime | string <date-time> |
| requestIds | Array of integers or null <int64> |
| userId | integer <int32> |
{- "id": 0,
- "action": "string",
- "actionType": 0,
- "result": "string",
- "message": "string",
- "jobInstanceActionItems": [
- {
- "id": 0,
- "jorsRequestParameters": "string",
- "result": "string",
- "message": "string",
- "files": [
- "string"
], - "data": "string",
- "requestId": 0
}
], - "expiryTime": "2019-08-24T14:15:22Z",
- "requestIds": [
- 0
], - "userId": 0
}| sessionId | integer or null <int64> |
| application | string or null |
| message | Array of strings or null |
| id | string or null |
| fileDir | string or null |
| fileName | string or null |
object (SessionLogUser) | |
| fileSize | integer or null <int64> |
| fileAge | string or null <date-time> |
{- "sessionId": 0,
- "application": "string",
- "message": [
- "string"
], - "id": "string",
- "fileDir": "string",
- "fileName": "string",
- "user": {
- "id": 0
}, - "fileSize": 0,
- "fileAge": "2019-08-24T14:15:22Z"
}| id | integer <int32> |
| action | string or null |
| result | string or null |
| message | string or null |
| expiryTime | string <date-time> |
| requestIds | Array of integers or null <int64> |
| userId | integer <int32> |
Array of objects or null (MachineActionItem) |
{- "id": 0,
- "action": "string",
- "result": "string",
- "message": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "requestIds": [
- 0
], - "userId": 0,
- "machines": [
- {
- "id": 0,
- "requestId": 0,
- "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "status": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "result": "string",
- "message": "string"
}
]
}| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| MachineGroupNamesOnly | boolean |
| Offset | integer <int32> |
| Limit | integer <int32> |
| Name | string |
| Type | string |
| Ids | string |
| TypeIds | string |
| IncludeMachines | boolean |
| HasAdminAccess | boolean |
| AccessibleMachineGroups | Array of integers <int32> [ items <int32 > ] |
| SortBy | string |
| SortOrders | Array of strings |
[- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
]Sample request (this creates a new machine group):
POST /api/machinegroups
{
"name": "Operator""
}
| id | integer or null <int32> |
| documentation | string or null |
| name | string or null |
object (MachineGroupType) | |
Array of objects or null (Machine) | |
Array of objects or null (CrossReferenceMasterJob) | |
Array of objects or null (CrossReferenceDailyJob) |
{- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}{- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| MachineGroupNamesOnly | boolean |
| Offset | integer <int32> |
| Limit | integer <int32> |
| Name | string |
| Type | string |
| Ids | string |
| TypeIds | string |
| IncludeMachines | boolean |
| HasAdminAccess | boolean |
| AccessibleMachineGroups | Array of integers <int32> [ items <int32 > ] |
| SortBy | string |
| SortOrders | Array of strings |
[- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
]Sample request (this returns the machine group with id = 1):
GET /api/machinegroups/1
| id required | integer <int32> The id of the machine group you want to get |
{- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}Sample request (this updates the machine group):
PUT /api/machinegroups/1
{
"id": 1,
"name": "MachineGroupName"
"type: {
"id": 6,
}
| id required | integer <int32> The machine group id |
| id | integer or null <int32> |
| documentation | string or null |
| name | string or null |
object (MachineGroupType) | |
Array of objects or null (Machine) | |
Array of objects or null (CrossReferenceMasterJob) | |
Array of objects or null (CrossReferenceDailyJob) |
{- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}{- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}Sample request (this deletes the machine group):
DELETE /api/machinegroups/1
| id required | integer <int32> The unique identifier of the machine group |
{- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}Sample request (this returns a list of machines by name in descending order):
GET /api/machines?sortby=name:desc
| ResourceName | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| includeDocumentation | boolean |
| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| Ids | string |
| Name | string |
| Type | string |
| Typeids | string |
| GroupName | string |
| GroupIds | string |
| States | string |
| Version | string |
| FileTransferRole | string |
| Sockets | string |
| Tls | boolean |
| SortBy | string |
| IncludeDetails | boolean |
| ExcludeNullMachine | boolean |
| SortOrders | Array of strings |
| ExtendedProperties | boolean |
| HasAdminAccess | boolean |
Array of objects (ApiError) | |
Array of objects (AuxillaryProperty) |
[- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
]| id | integer or null <int32> |
| name | string or null |
| currentJobs | integer or null <int32> |
| gatewayId | integer or null <int32> |
Array of objects or null (MachineGroup) | |
| lastUpdateDateTime | string or null |
| lastUpdate | number or null <double> |
| maximumJobs | integer or null <int32> |
| opConMaximumJobs | integer or null <int32> |
| socket | integer or null <int32> |
object (MachineStatus) | |
object (LsamType) | |
Array of objects or null (CrossReferenceMasterJob) | |
Array of objects or null (CrossReferenceDailyJob) | |
| acceptMessagesfromIp | string or null |
| agentCheckCrc | boolean or null |
| agentFileTransferPortNumberForTls | string or null |
| agentName | string or null |
| _agentSmaCommunicationsProtocol | string or null |
| agentSocket | string or null |
| agentSpecialFeatures | string or null |
| agentSupportNonTlsForSmaftAgent | string or null |
| agentSupportNonTlsForSmaftServer | string or null |
| agentSupportTlsForSmaftAgent | string or null |
| agentSupportTlsForSmaftServer | string or null |
| _allowKillJob | boolean or null |
| allowKillJob | boolean or null |
Array of objects or null (InstanceProperty) | |
| _checkCertificateRevocationList | boolean or null |
| checkCertificateRevocationList | boolean or null |
| checkCrc | string or null |
| checkMachineStatusInterval | integer or null <int32> |
| closeSocket | string or null |
| closeSocketDuringSynchronization | boolean or null |
| connectionAttemptTimeout | integer or null <int32> |
| consecutiveSendSleepTimeMilliseconds | integer or null <int32> |
| cpuCount | string or null |
| cpuId | string or null |
| cpuModel | string or null |
| cpuType | string or null |
| documentation | string or null |
| fileTransferFeature | string or null |
| fileTransferIpAddress | string or null |
| _fileTransferPortNumberForNonTls | integer or null <int32> |
| fileTransferPortNumberForNonTls | integer or null <int32> |
| _fileTransferPortNumberForTls | integer or null <int32> |
| fileTransferPortNumberForTls | integer or null <int32> |
| _fileTransferRole | string or null |
| fileTransferRole | string or null |
| fullFileTransferSupport | boolean or null |
| fullyQualifiedDomainName | string or null |
| gatewayName | string or null |
| hostname | string or null |
| jorsFeature | string or null |
| _jorsPortNumber | integer or null <int32> |
| jorsPortNumber | integer or null <int32> |
| jorsSocket | string or null |
| lsamTime | number or null <double> |
| lsamTimeDeltafromSam | integer or null <int32> |
| machineMaximumJobs | string or null |
| maxBytesReadPerMessage | integer or null <int32> |
| maxBytesSentPerMessage | integer or null <int32> |
| maxConsecutiveSendMessages | integer or null <int32> |
| noBufferRetryCount | integer or null <int32> |
| noBufferSleepTime | integer or null <int32> |
| osType | string or null |
| osVersion | string or null |
| pollInterval | integer or null <int32> |
| receiveBufferCount | integer or null <int32> |
| _requiresXmlEscape | boolean or null |
| requiresXmlEscape | boolean or null |
| resourceMonitorFeature | string or null |
| responseTimeoutInSeconds | integer or null <int32> |
| sendBufferCount | integer or null <int32> |
| smaCommunicationsProtocol | string or null |
| smaftAgentPort | string or null |
| smaftServerPortForNonTls | string or null |
| smaNetComIdentifier | string or null |
| smaNetComSocket | string or null |
| supportedAgentCapability | Array of strings or null |
| _supportNonTlsForSmaftAgent | boolean or null |
| supportNonTLSForSMAFTAgent | boolean or null |
| _supportNonTlsForSmaftServer | boolean or null |
| supportNonTLSForSMAFTServer | boolean or null |
| _supportTLSForSMAFTAgent | boolean or null |
| supportTLSForSMAFTAgent | boolean or null |
| _supportTLSForSMAFTServer | boolean or null |
| supportTLSForSMAFTServer | boolean or null |
| supportsHandshake | string or null |
| tcpIpAddress | string or null |
| timeOffsetfromSamInHours | number or null <double> |
| timeOffsetfromUtcInHours | number or null <double> |
| timeSent | string or null |
| timeZoneName | string or null |
| tlsCertificateDistinguishedName | string or null |
| _tlsCertificateSerialNumber | string or null |
| tlsCertificateSerialNumber | string or null |
| traceAllMessages | boolean or null |
| _useTLSforSchedulingCommunications | boolean or null |
| useTLSforSchedulingCommunications | boolean or null |
| agentVersion | string or null |
| hpNonStopIpAddress | string or null |
| hpNonStopSocketNumber | integer or null <int32> |
| _sapBwClientId | integer or null <int32> |
| sapBwClientId | integer or null <int32> |
| _sapBwGateway | string or null |
| sapBwGateway | string or null |
| _sapBwGroup | string or null |
| sapBwGroup | string or null |
| _sapBwName | string or null |
| sapBwName | string or null |
| _sapBwQueryListenerPort | integer or null <int32> |
| sapBwQueryListenerPort | integer or null <int32> |
| _sapBwSystemNumber | integer or null <int32> |
| sapBwSystemNumber | integer or null <int32> |
| _sapBwRfcTrace | integer or null <int32> |
| sapBwRfcTrace | string or null |
| _sapR3andCrmAuditLevel | integer or null <int32> |
| sapR3andCrmAuditLevel | string or null |
| _sapR3andCrmClientId | integer or null <int32> |
| sapR3andCrmClientId | integer or null <int32> |
| _sapEvents | Array of strings or null |
| sapEvents | Array of strings or null |
| _sapR3andCrmGateway | string or null |
| sapR3andCrmGateway | string or null |
| _sapR3andCrmGroup | string or null |
| sapR3andCrmGroup | string or null |
| _sapR3andCrmName | string or null |
| sapR3andCrmName | string or null |
| _sapR3andCrmQueryListenerPort | integer or null <int32> |
| sapR3andCrmQueryListenerPort | integer or null <int32> |
| _sapR3andCrmSystemNumber | integer or null <int32> |
| sapR3andCrmSystemNumber | integer or null <int32> |
| _sapR3andCrmRfcTrace | integer or null <int32> |
| sapR3andCrmRfcTrace | string or null |
{- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}| ResourceName | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| includeDocumentation | boolean |
| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| Ids | string |
| Name | string |
| Type | string |
| Typeids | string |
| GroupName | string |
| GroupIds | string |
| States | string |
| Version | string |
| FileTransferRole | string |
| Sockets | string |
| Tls | boolean |
| SortBy | string |
| IncludeDetails | boolean |
| ExcludeNullMachine | boolean |
| SortOrders | Array of strings |
| ExtendedProperties | boolean |
| HasAdminAccess | boolean |
Array of objects (ApiError) | |
Array of objects (AuxillaryProperty) |
| ResourceName | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| includeDocumentation | boolean |
| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| Ids | string |
| Name | string |
| Type | string |
| Typeids | string |
| GroupName | string |
| GroupIds | string |
| States | string |
| Version | string |
| FileTransferRole | string |
| Sockets | string |
| Tls | boolean |
| SortBy | string |
| IncludeDetails | boolean |
| ExcludeNullMachine | boolean |
| SortOrders | Array of strings |
| ExtendedProperties | boolean |
| HasAdminAccess | boolean |
Array of objects (ApiError) | |
Array of objects (AuxillaryProperty) |
| id required | integer <int32> |
| id | integer or null <int32> |
| name | string or null |
| currentJobs | integer or null <int32> |
| gatewayId | integer or null <int32> |
Array of objects or null (MachineGroup) | |
| lastUpdateDateTime | string or null |
| lastUpdate | number or null <double> |
| maximumJobs | integer or null <int32> |
| opConMaximumJobs | integer or null <int32> |
| socket | integer or null <int32> |
object (MachineStatus) | |
object (LsamType) | |
Array of objects or null (CrossReferenceMasterJob) | |
Array of objects or null (CrossReferenceDailyJob) | |
| acceptMessagesfromIp | string or null |
| agentCheckCrc | boolean or null |
| agentFileTransferPortNumberForTls | string or null |
| agentName | string or null |
| _agentSmaCommunicationsProtocol | string or null |
| agentSocket | string or null |
| agentSpecialFeatures | string or null |
| agentSupportNonTlsForSmaftAgent | string or null |
| agentSupportNonTlsForSmaftServer | string or null |
| agentSupportTlsForSmaftAgent | string or null |
| agentSupportTlsForSmaftServer | string or null |
| _allowKillJob | boolean or null |
| allowKillJob | boolean or null |
Array of objects or null (InstanceProperty) | |
| _checkCertificateRevocationList | boolean or null |
| checkCertificateRevocationList | boolean or null |
| checkCrc | string or null |
| checkMachineStatusInterval | integer or null <int32> |
| closeSocket | string or null |
| closeSocketDuringSynchronization | boolean or null |
| connectionAttemptTimeout | integer or null <int32> |
| consecutiveSendSleepTimeMilliseconds | integer or null <int32> |
| cpuCount | string or null |
| cpuId | string or null |
| cpuModel | string or null |
| cpuType | string or null |
| documentation | string or null |
| fileTransferFeature | string or null |
| fileTransferIpAddress | string or null |
| _fileTransferPortNumberForNonTls | integer or null <int32> |
| fileTransferPortNumberForNonTls | integer or null <int32> |
| _fileTransferPortNumberForTls | integer or null <int32> |
| fileTransferPortNumberForTls | integer or null <int32> |
| _fileTransferRole | string or null |
| fileTransferRole | string or null |
| fullFileTransferSupport | boolean or null |
| fullyQualifiedDomainName | string or null |
| gatewayName | string or null |
| hostname | string or null |
| jorsFeature | string or null |
| _jorsPortNumber | integer or null <int32> |
| jorsPortNumber | integer or null <int32> |
| jorsSocket | string or null |
| lsamTime | number or null <double> |
| lsamTimeDeltafromSam | integer or null <int32> |
| machineMaximumJobs | string or null |
| maxBytesReadPerMessage | integer or null <int32> |
| maxBytesSentPerMessage | integer or null <int32> |
| maxConsecutiveSendMessages | integer or null <int32> |
| noBufferRetryCount | integer or null <int32> |
| noBufferSleepTime | integer or null <int32> |
| osType | string or null |
| osVersion | string or null |
| pollInterval | integer or null <int32> |
| receiveBufferCount | integer or null <int32> |
| _requiresXmlEscape | boolean or null |
| requiresXmlEscape | boolean or null |
| resourceMonitorFeature | string or null |
| responseTimeoutInSeconds | integer or null <int32> |
| sendBufferCount | integer or null <int32> |
| smaCommunicationsProtocol | string or null |
| smaftAgentPort | string or null |
| smaftServerPortForNonTls | string or null |
| smaNetComIdentifier | string or null |
| smaNetComSocket | string or null |
| supportedAgentCapability | Array of strings or null |
| _supportNonTlsForSmaftAgent | boolean or null |
| supportNonTLSForSMAFTAgent | boolean or null |
| _supportNonTlsForSmaftServer | boolean or null |
| supportNonTLSForSMAFTServer | boolean or null |
| _supportTLSForSMAFTAgent | boolean or null |
| supportTLSForSMAFTAgent | boolean or null |
| _supportTLSForSMAFTServer | boolean or null |
| supportTLSForSMAFTServer | boolean or null |
| supportsHandshake | string or null |
| tcpIpAddress | string or null |
| timeOffsetfromSamInHours | number or null <double> |
| timeOffsetfromUtcInHours | number or null <double> |
| timeSent | string or null |
| timeZoneName | string or null |
| tlsCertificateDistinguishedName | string or null |
| _tlsCertificateSerialNumber | string or null |
| tlsCertificateSerialNumber | string or null |
| traceAllMessages | boolean or null |
| _useTLSforSchedulingCommunications | boolean or null |
| useTLSforSchedulingCommunications | boolean or null |
| agentVersion | string or null |
| hpNonStopIpAddress | string or null |
| hpNonStopSocketNumber | integer or null <int32> |
| _sapBwClientId | integer or null <int32> |
| sapBwClientId | integer or null <int32> |
| _sapBwGateway | string or null |
| sapBwGateway | string or null |
| _sapBwGroup | string or null |
| sapBwGroup | string or null |
| _sapBwName | string or null |
| sapBwName | string or null |
| _sapBwQueryListenerPort | integer or null <int32> |
| sapBwQueryListenerPort | integer or null <int32> |
| _sapBwSystemNumber | integer or null <int32> |
| sapBwSystemNumber | integer or null <int32> |
| _sapBwRfcTrace | integer or null <int32> |
| sapBwRfcTrace | string or null |
| _sapR3andCrmAuditLevel | integer or null <int32> |
| sapR3andCrmAuditLevel | string or null |
| _sapR3andCrmClientId | integer or null <int32> |
| sapR3andCrmClientId | integer or null <int32> |
| _sapEvents | Array of strings or null |
| sapEvents | Array of strings or null |
| _sapR3andCrmGateway | string or null |
| sapR3andCrmGateway | string or null |
| _sapR3andCrmGroup | string or null |
| sapR3andCrmGroup | string or null |
| _sapR3andCrmName | string or null |
| sapR3andCrmName | string or null |
| _sapR3andCrmQueryListenerPort | integer or null <int32> |
| sapR3andCrmQueryListenerPort | integer or null <int32> |
| _sapR3andCrmSystemNumber | integer or null <int32> |
| sapR3andCrmSystemNumber | integer or null <int32> |
| _sapR3andCrmRfcTrace | integer or null <int32> |
| sapR3andCrmRfcTrace | string or null |
{- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}Sample request:
POST /api/syncRunningJobs
{
"machine": {
"id": 1
}
object (MachineToSync) | |
| runningJobsCount | integer <int32> |
{- "machine": {
- "id": 0
}, - "runningJobsCount": 0
}{- "machine": {
- "id": 0
}, - "runningJobsCount": 0
}Sample request (this returns a list of master jobs sorted by name): GET /api/masterJobs/v2?sortby=jobName
| Key.JobName | string |
| Key.ScheduleId | integer <int32> |
| SelectedIds | string List of job ids (1|job, etc) |
| ScheduleId | integer <int32> Schedule id |
| ScheduleName | string Schedule name |
| JobName | string Job name |
| JobTypeId | integer <int32> Job type id (-1, 3, 6, etc.) |
| JobTypeName | string Job type name |
| IncludeDetails | boolean Flag to include job details |
| IncludeCount | boolean Flag to include total count of accessible jobs |
| IncludeCrossReferences | boolean Flag to include cross references |
| Limit | integer <int32> [ 0 .. 2147483647 ] Limits the results being fetched |
| Offset | integer <int32> [ 0 .. 2147483647 ] Retrieves records beginning at this record number |
| SortBy | string Sort by (schedule name, job name, job type id, job id). Default is job id. |
| IgnoreCase | boolean Use case-insensitive search criteria. |
[- {
- "id": "string",
- "name": "string",
- "jobType": {
- "id": 0,
- "description": "string"
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "machineSelection": {
- "machineSelectionType": "None",
- "machineGroupId": 0,
- "machineIds": {
- "primary": 0,
- "alt1": 0,
- "alt2": 0,
- "alt3": 0
}, - "runOn": "string",
- "useScheduleInstanceMachine": true
}, - "isMultiInstance": true,
- "disableBuild": true,
- "frequencyType": "Unknown",
- "dependentMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "name": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "jobBuildStatus": "OnHold",
- "finishOkBehavior": {
- "recurringInstanceOffsets": [
- 0
], - "type": "None",
- "actionOnOverlap": "StartOnCompletion",
- "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0,
- "runIntervalFromStart": true
}, - "startTimeEstimation": {
- "estimationSource": "Calculated",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "jobTimesEstimation": {
- "startOffsetTimeFormat": "Absolute",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "Absolute",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0,
- "parentScheduleStartTime": "string",
- "localEstimatedStartTime": "string",
- "serverEstimatedStartTime": "string",
- "agentEstimatedStartTime": "string"
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "advancedFrequencySettings": {
- "startSchedulingOn": "string",
- "endSchedulingOn": "string",
- "includeInScheduleOn": [
- "string"
], - "excludeFromScheduleOn": [
- "string"
], - "excludeMonthFromSchedule": [
- "Unknown"
]
}
}
], - "jobDependencies": [
- {
- "predecessor": {
- "schedule": {
- "id": 0,
- "name": "string",
- "namedInstance": {
- "name": "string",
- "number": 0
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true
}, - "jobName": "string"
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "schedule": {
- "id": 0,
- "name": "string",
- "namedInstance": {
- "name": "string",
- "number": 0
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true
}, - "frequency": {
- "name": "string"
}
}
], - "properties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "documentation": {
- "scheduleId": 0,
- "jobName": "string",
- "jobDocumentation": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "documentation": "string"
}
]
}, - "expressionDependencies": {
- "jobExpression": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "expression": "string"
}
]
}, - "thresholdResourceDependencies": [
- {
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "operator": "Equals",
- "value": 0,
- "requiresAll": true,
- "frequencyName": "string"
}
], - "thresholdResourceUpdates": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "value": 0,
- "jobStatus": "LateToStart",
- "frequencyName": "string"
}
], - "tags": {
- "job": [
- "string"
], - "frequencies": [
- {
- "frequencyName": "string",
- "tags": [
- "string"
]
}
]
}, - "events": [
- {
- "id": 0,
- "frequency": {
- "name": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "job": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": null,
- "jobName": null,
- "schedule": null
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": null,
- "jobName": null,
- "schedule": null
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- null
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}
}
], - "details": null
}
]Sample request (this creates a new master job): POST /api/masterJobs/v2 { "name": "job", "jobType": { "id": -1, }, "schedule: { "id": 1 }, "accessCode": { "id": 1 }, "department": { "id": 1 }, "machineSelection": { "machineSelectionType": "None", "machineGroupId": 0, "machineIds": { "primary": 1, "alt1": 0, "alt2": 0, "alt3": 0 }, "isMultiInstance": false, "disableBuild": false }
| id | string or null |
| name required | string [ 1 .. 64 ] characters [^!%'|;&<>()\[\]{},=\\"]* |
required | object (AddMasterJobJobType) |
required | object (AddMasterJobMasterSchedule) |
required | object (AddMasterJobAccessCode) |
required | object (AddMasterJobDepartment) |
required | object (MasterJobsMachineSelection) |
| isMultiInstance required | boolean |
| disableBuild required | boolean |
Array of objects or null (UpdateMasterJobFrequencyModel) | |
| details | any or null |
{- "id": "string",
- "name": "string",
- "jobType": {
- "id": 0
}, - "schedule": {
- "id": 1
}, - "accessCode": {
- "id": 32767
}, - "department": {
- "id": 1
}, - "machineSelection": {
- "machineSelectionType": "None",
- "machineGroupId": 0,
- "machineIds": {
- "primary": 0,
- "alt1": 0,
- "alt2": 0,
- "alt3": 0
}, - "runOn": "string",
- "useScheduleInstanceMachine": true
}, - "isMultiInstance": true,
- "disableBuild": true,
- "frequencies": [
- {
- "jobBuildStatus": "OnHold",
- "finishOkBehavior": {
- "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "recurringInstanceOffsets": [
- 0
], - "minutesFromStartToStart": 1440,
- "minutesFromEndToStart": 1440,
- "type": "None",
- "actionOnOverlap": "StartOnCompletion",
- "runIntervalFromStart": true
}, - "name": "string",
- "frequencyPriority": 0,
- "startTimeEstimation": {
- "predictedStartTimeOffset": 0,
- "estimatedRunTime": 32767,
- "estimationSource": "Calculated"
}, - "jobExecution": {
- "samPriority": 32767,
- "maxRunTime": 32767
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 1440,
- "maximumAttempts": 1
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "localEstimatedStartTime": "string",
- "serverEstimatedStartTime": "string",
- "agentEstimatedStartTime": "string",
- "startOffset": 5999,
- "lateToStartOffset": 5999,
- "latestStartOffset": 5999,
- "lateToFinishOffset": 5999,
- "startOffsetTimeFormat": "Absolute",
- "latestStartOffsetTimeFormat": "Absolute"
}
}
], - "details": null
}{- "id": "string",
- "name": "string",
- "jobType": {
- "id": 0,
- "description": "string"
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "machineSelection": {
- "machineSelectionType": "None",
- "machineGroupId": 0,
- "machineIds": {
- "primary": 0,
- "alt1": 0,
- "alt2": 0,
- "alt3": 0
}, - "runOn": "string",
- "useScheduleInstanceMachine": true
}, - "isMultiInstance": true,
- "disableBuild": true,
- "frequencyType": "Unknown",
- "dependentMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "name": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "jobBuildStatus": "OnHold",
- "finishOkBehavior": {
- "recurringInstanceOffsets": [
- 0
], - "type": "None",
- "actionOnOverlap": "StartOnCompletion",
- "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0,
- "runIntervalFromStart": true
}, - "startTimeEstimation": {
- "estimationSource": "Calculated",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "jobTimesEstimation": {
- "startOffsetTimeFormat": "Absolute",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "Absolute",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0,
- "parentScheduleStartTime": "string",
- "localEstimatedStartTime": "string",
- "serverEstimatedStartTime": "string",
- "agentEstimatedStartTime": "string"
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "advancedFrequencySettings": {
- "startSchedulingOn": "string",
- "endSchedulingOn": "string",
- "includeInScheduleOn": [
- "string"
], - "excludeFromScheduleOn": [
- "string"
], - "excludeMonthFromSchedule": [
- "Unknown"
]
}
}
], - "jobDependencies": [
- {
- "predecessor": {
- "schedule": {
- "id": 0,
- "name": "string",
- "namedInstance": {
- "name": "string",
- "number": 0
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true
}, - "jobName": "string"
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "schedule": {
- "id": 0,
- "name": "string",
- "namedInstance": {
- "name": "string",
- "number": 0
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true
}, - "frequency": {
- "name": "string"
}
}
], - "properties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "documentation": {
- "scheduleId": 0,
- "jobName": "string",
- "jobDocumentation": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "documentation": "string"
}
]
}, - "expressionDependencies": {
- "jobExpression": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "expression": "string"
}
]
}, - "thresholdResourceDependencies": [
- {
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "operator": "Equals",
- "value": 0,
- "requiresAll": true,
- "frequencyName": "string"
}
], - "thresholdResourceUpdates": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "value": 0,
- "jobStatus": "LateToStart",
- "frequencyName": "string"
}
], - "tags": {
- "job": [
- "string"
], - "frequencies": [
- {
- "frequencyName": "string",
- "tags": [
- "string"
]
}
]
}, - "events": [
- {
- "id": 0,
- "frequency": {
- "name": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "job": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": null,
- "value": null
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}
}
], - "details": null
}Sample request (this the master job with id = '1|Audit History Purge'): GET /api/masterJobs/v2/1|Audit History Purge
| JobName required | string |
| ScheduleId required | integer <int32> |
| masterJobKey required | string |
{- "id": "string",
- "name": "string",
- "jobType": {
- "id": 0,
- "description": "string"
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "machineSelection": {
- "machineSelectionType": "None",
- "machineGroupId": 0,
- "machineIds": {
- "primary": 0,
- "alt1": 0,
- "alt2": 0,
- "alt3": 0
}, - "runOn": "string",
- "useScheduleInstanceMachine": true
}, - "isMultiInstance": true,
- "disableBuild": true,
- "frequencyType": "Unknown",
- "dependentMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "name": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "jobBuildStatus": "OnHold",
- "finishOkBehavior": {
- "recurringInstanceOffsets": [
- 0
], - "type": "None",
- "actionOnOverlap": "StartOnCompletion",
- "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0,
- "runIntervalFromStart": true
}, - "startTimeEstimation": {
- "estimationSource": "Calculated",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "jobTimesEstimation": {
- "startOffsetTimeFormat": "Absolute",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "Absolute",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0,
- "parentScheduleStartTime": "string",
- "localEstimatedStartTime": "string",
- "serverEstimatedStartTime": "string",
- "agentEstimatedStartTime": "string"
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "advancedFrequencySettings": {
- "startSchedulingOn": "string",
- "endSchedulingOn": "string",
- "includeInScheduleOn": [
- "string"
], - "excludeFromScheduleOn": [
- "string"
], - "excludeMonthFromSchedule": [
- "Unknown"
]
}
}
], - "jobDependencies": [
- {
- "predecessor": {
- "schedule": {
- "id": 0,
- "name": "string",
- "namedInstance": {
- "name": "string",
- "number": 0
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true
}, - "jobName": "string"
}, - "type": {
- "id": 0,
- "name": "string",
- "condition": "string",
- "checkAllDays": true,
- "offset": 0,
- "jobNameLike": "string",
- "categories": [
- "string"
]
}, - "schedule": {
- "id": 0,
- "name": "string",
- "namedInstance": {
- "name": "string",
- "number": 0
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true
}, - "frequency": {
- "name": "string"
}
}
], - "properties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "documentation": {
- "scheduleId": 0,
- "jobName": "string",
- "jobDocumentation": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "documentation": "string"
}
]
}, - "expressionDependencies": {
- "jobExpression": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "expression": "string"
}
]
}, - "thresholdResourceDependencies": [
- {
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "operator": "Equals",
- "value": 0,
- "requiresAll": true,
- "frequencyName": "string"
}
], - "thresholdResourceUpdates": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "value": 0,
- "jobStatus": "LateToStart",
- "frequencyName": "string"
}
], - "tags": {
- "job": [
- "string"
], - "frequencies": [
- {
- "frequencyName": "string",
- "tags": [
- "string"
]
}
]
}, - "events": [
- {
- "id": 0,
- "frequency": {
- "name": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "job": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": null,
- "value": null
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": {
- "type": "string"
}, - "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}
}
], - "details": null
}Sample request (this updates the master job name): PUT /api/masterJobs/v2/3|job1
{
"id": "3|job1",
"name": "job1-updated",
"jobType": {
"id": -1
},
"schedule": {
"id": 3,
"name": "skd",
"subSchedule": false
},
"accessCode": {
"id": 0
},
"department": {
"id": 1
},
"machineSelection": {
"machineSelectionType": "None",
"machineGroupId": 0,
"machineIds": {
"primary": 0,
"alt1": 0,
"alt2": 0,
"alt3": 0
}
},
"isMultiInstance": false,
"disableBuild": false
}
| JobName required | string |
| ScheduleId required | integer <int32> |
| masterJobKey required | string |
| id | string or null |
Array of objects or null (UpdateMasterJobDependencyModel) | |
Array of objects or null (UpdateMasterJobInstancePropertyListModel) | |
object (MasterJobsDocumentation) | |
object (UpdateMasterJobsExpressionDependencyModel) | |
Array of objects or null (UpdateMasterJobThresholdResourceDependencyModel) | |
Array of objects or null (UpdateMasterJobThresholdResourceUpdateModel) | |
object (UpdateMasterJobTagModel) | |
| name required | string [ 1 .. 64 ] characters [^!%'|;&<>()\[\]{},=\\"]* |
required | object (UpdateMasterJobJobType) |
required | object (UpdateMasterJobMasterSchedule) |
required | object (UpdateMasterJobAccessCode) |
required | object (UpdateMasterJobDepartment) |
required | object (MasterJobsMachineSelection) |
| isMultiInstance required | boolean |
| disableBuild required | boolean |
| frequencyType required | string (FrequencyTypes) Enum: "Unknown" "Inherited" "Defined" |
Array of objects or null (MasterJobFrequency) | |
| details | any or null |
Array of objects or null (MasterJobsEvent) |
{- "id": "string",
- "jobDependencies": [
- {
- "frequency": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "namedInstance": {
- "name": "string"
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true,
- "id": 0
}, - "type": {
- "condition": "None",
- "checkAllDays": true,
- "name": "Requires",
- "offset": -999,
- "jobNameLike": "string"
}, - "predecessor": {
- "schedule": {
- "name": "string",
- "namedInstance": {
- "name": "string"
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true,
- "id": 0
}, - "jobName": "string"
}
}
], - "properties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "documentation": {
- "scheduleId": 0,
- "jobName": "string",
- "jobDocumentation": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "documentation": "string"
}
]
}, - "expressionDependencies": {
- "jobExpression": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "expression": "string"
}
]
}, - "thresholdResourceDependencies": [
- {
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "operator": "Equals",
- "value": 2147483647,
- "requiresAll": true,
- "frequencyName": "string"
}
], - "thresholdResourceUpdates": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "value": 2147483647,
- "jobStatus": "LateToStart",
- "frequencyName": "string"
}
], - "tags": {
- "job": [
- "string"
], - "frequencies": [
- {
- "frequencyName": "string",
- "tags": [
- "string"
]
}
]
}, - "name": "string",
- "jobType": {
- "id": 0
}, - "schedule": {
- "id": 1
}, - "accessCode": {
- "id": 32767
}, - "department": {
- "id": 1
}, - "machineSelection": {
- "machineSelectionType": "None",
- "machineGroupId": 0,
- "machineIds": {
- "primary": 0,
- "alt1": 0,
- "alt2": 0,
- "alt3": 0
}, - "runOn": "string",
- "useScheduleInstanceMachine": true
}, - "isMultiInstance": true,
- "disableBuild": true,
- "frequencyType": "Unknown",
- "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "name": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "jobBuildStatus": "OnHold",
- "finishOkBehavior": {
- "recurringInstanceOffsets": [
- 0
], - "type": "None",
- "actionOnOverlap": "StartOnCompletion",
- "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0,
- "runIntervalFromStart": true
}, - "startTimeEstimation": {
- "estimationSource": "Calculated",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "jobTimesEstimation": {
- "startOffsetTimeFormat": "Absolute",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "Absolute",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0,
- "parentScheduleStartTime": "string",
- "localEstimatedStartTime": "string",
- "serverEstimatedStartTime": "string",
- "agentEstimatedStartTime": "string"
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "advancedFrequencySettings": {
- "startSchedulingOn": "string",
- "endSchedulingOn": "string",
- "includeInScheduleOn": [
- "string"
], - "excludeFromScheduleOn": [
- "string"
], - "excludeMonthFromSchedule": [
- "Unknown"
]
}
}
], - "details": null,
- "events": [
- {
- "id": 0,
- "frequency": {
- "name": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "job": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": null,
- "value": null
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}
}
]
}Sample request: POST /api/masterJobs/v2/copy { "name": "job", "jobType": { "id": -1, }, "schedule: { "id": 1 }, "accessCode": { "id": 1 }, "department": { "id": 1 }, "machineSelection": { "machineSelectionType": "None", "machineGroupId": 0, "machineIds": { "primary": 1, "alt1": 0, "alt2": 0, "alt3": 0 }, "isMultiInstance": false, "disableBuild": false }
| id | string or null |
Array of objects or null (UpdateMasterJobDependencyModel) | |
Array of objects or null (UpdateMasterJobInstancePropertyListModel) | |
object (MasterJobsDocumentation) | |
object (UpdateMasterJobsExpressionDependencyModel) | |
Array of objects or null (UpdateMasterJobThresholdResourceDependencyModel) | |
Array of objects or null (UpdateMasterJobThresholdResourceUpdateModel) | |
object (UpdateMasterJobTagModel) | |
| name required | string [ 1 .. 64 ] characters [^!%'|;&<>()\[\]{},=\\"]* |
required | object (UpdateMasterJobJobType) |
required | object (UpdateMasterJobMasterSchedule) |
required | object (UpdateMasterJobAccessCode) |
required | object (UpdateMasterJobDepartment) |
required | object (MasterJobsMachineSelection) |
| isMultiInstance required | boolean |
| disableBuild required | boolean |
| frequencyType required | string (FrequencyTypes) Enum: "Unknown" "Inherited" "Defined" |
Array of objects or null (MasterJobFrequency) | |
| details | any or null |
Array of objects or null (MasterJobsEvent) |
{- "id": "string",
- "jobDependencies": [
- {
- "frequency": {
- "name": "string"
}, - "schedule": {
- "name": "string",
- "namedInstance": {
- "name": "string"
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true,
- "id": 0
}, - "type": {
- "condition": "None",
- "checkAllDays": true,
- "name": "Requires",
- "offset": -999,
- "jobNameLike": "string"
}, - "predecessor": {
- "schedule": {
- "name": "string",
- "namedInstance": {
- "name": "string"
}, - "jobName": "string",
- "isMultiInstance": true,
- "isNamedInstance": true,
- "id": 0
}, - "jobName": "string"
}
}
], - "properties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "documentation": {
- "scheduleId": 0,
- "jobName": "string",
- "jobDocumentation": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "documentation": "string"
}
]
}, - "expressionDependencies": {
- "jobExpression": "string",
- "frequencies": [
- {
- "frequencyName": "string",
- "expression": "string"
}
]
}, - "thresholdResourceDependencies": [
- {
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "operator": "Equals",
- "value": 2147483647,
- "requiresAll": true,
- "frequencyName": "string"
}
], - "thresholdResourceUpdates": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "id": 0,
- "name": "string",
- "type": "Threshold",
- "value": 2147483647,
- "jobStatus": "LateToStart",
- "frequencyName": "string"
}
], - "tags": {
- "job": [
- "string"
], - "frequencies": [
- {
- "frequencyName": "string",
- "tags": [
- "string"
]
}
]
}, - "name": "string",
- "jobType": {
- "id": 0
}, - "schedule": {
- "id": 1
}, - "accessCode": {
- "id": 32767
}, - "department": {
- "id": 1
}, - "machineSelection": {
- "machineSelectionType": "None",
- "machineGroupId": 0,
- "machineIds": {
- "primary": 0,
- "alt1": 0,
- "alt2": 0,
- "alt3": 0
}, - "runOn": "string",
- "useScheduleInstanceMachine": true
}, - "isMultiInstance": true,
- "disableBuild": true,
- "frequencyType": "Unknown",
- "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "name": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "jobBuildStatus": "OnHold",
- "finishOkBehavior": {
- "recurringInstanceOffsets": [
- 0
], - "type": "None",
- "actionOnOverlap": "StartOnCompletion",
- "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0,
- "runIntervalFromStart": true
}, - "startTimeEstimation": {
- "estimationSource": "Calculated",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "jobTimesEstimation": {
- "startOffsetTimeFormat": "Absolute",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "Absolute",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0,
- "parentScheduleStartTime": "string",
- "localEstimatedStartTime": "string",
- "serverEstimatedStartTime": "string",
- "agentEstimatedStartTime": "string"
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "advancedFrequencySettings": {
- "startSchedulingOn": "string",
- "endSchedulingOn": "string",
- "includeInScheduleOn": [
- "string"
], - "excludeFromScheduleOn": [
- "string"
], - "excludeMonthFromSchedule": [
- "Unknown"
]
}
}
], - "details": null,
- "events": [
- {
- "id": 0,
- "frequency": {
- "name": "string"
}, - "user": {
- "id": 32767,
- "name": "string"
}, - "trigger": {
- "property1": "string",
- "property2": "string"
}, - "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "job": {
- "id": "string",
- "department": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "associations": {
- "jobs": [
- {
- "schedule": "string",
- "job": "string"
}
], - "dailyJobs": [
- {
- "schedule": "string",
- "job": "string",
- "date": "2019-08-24T14:15:22Z"
}
], - "roles": [
- "string"
]
}, - "scheduleId": 0,
- "scheduleName": "string",
- "jobName": "string",
- "dailyScheduleId": 0,
- "dailyScheduleName": "string",
- "dailyJobName": "string",
- "dailyJobDate": 0,
- "role": "string"
}, - "isMultiInstance": true,
- "runOnEachMachine": true,
- "jobGroup": 0,
- "jobName": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}
], - "type": {
- "id": 0,
- "description": "string"
}, - "accessCode": {
- "id": 0,
- "name": "string",
- "description": "string",
- "securedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "securedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "machine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine2": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "alternateMachine3": {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}, - "machineGroup": {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- { }
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": null,
- "name": null,
- "instance": null,
- "date": null
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": null,
- "value": null
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}, - "schedule": {
- "calendar": {
- "id": 0,
- "schedule": { },
- "type": 0,
- "name": "string",
- "dates": [
- "string"
], - "description": "string",
- "calendarAssociations": [
- {
- "id": 0,
- "scheduleName": "string",
- "jobName": "string",
- "frequencyName": "string",
- "isAdditionalHolidayCalendar": true
}
]
}, - "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "frequencies": [
- {
- "scheduleId": 0,
- "name": "string"
}
], - "sam": 0,
- "start": 0,
- "weekdays": 0,
- "isNamedInstance": true,
- "useMasterHolidayCalendar": true,
- "documentation": "string",
- "events": [
- "string"
], - "instanceProperties": [
- "string"
], - "isMultiInstance": true,
- "autoBuildDaysToBuild": 0,
- "autoBuildDaysInAdvance": 0,
- "autoBuildOverwrite": true,
- "autoBuildOnHold": true,
- "autoBuildTime": 0,
- "machineGroupToBuildFor": 0,
- "id": 0,
- "name": "string",
- "autoBuildSettings": {
- "numberOfDaysInAdvance": 0,
- "daysToBuild": 0,
- "overwrite": true,
- "buildOnHold": true,
- "buildOffset": 0
}, - "propertiesList": [
- {
- "key": "string",
- "value": "string"
}
], - "multiInstanceDetails": { },
- "subSchedule": true,
- "hasMachineInstances": true,
- "hasSubSchedule": true
}, - "instances": [
- "string"
], - "estimatedRunTime": 0,
- "shortName": "string",
- "properties": [
- {
- "id": 0,
- "jobName": "string",
- "fieldCode": 0,
- "sequenceNumber": 0,
- "value": "string"
}
]
}
}
]
}| Ids | string |
| ScheduleIds | string |
| JobIds | string |
| TagList | Array of strings |
| LimitValue | integer <int32> |
| OffsetValue | integer <int32> |
| ScheduleName | string |
| JobName | string |
| FrequencyName | string |
| SortOrders | Array of strings |
| JobType | string |
| DepartmentList | Array of integers <int32> [ items <int32 > ] |
| AccessCodeList | Array of integers <int32> [ items <int32 > ] |
| Name | string |
| SortBy | string |
| AccessCodes | string |
| Limit | string |
| Offset | string |
| Tags | string |
| Departments | string |
| Ids | string |
| ScheduleIds | string |
| JobIds | string |
| TagList | Array of strings |
| LimitValue | integer <int32> |
| OffsetValue | integer <int32> |
| ScheduleName | string |
| JobName | string |
| FrequencyName | string |
| SortOrders | Array of strings |
| JobType | string |
| DepartmentList | Array of integers <int32> [ items <int32 > ] |
| AccessCodeList | Array of integers <int32> [ items <int32 > ] |
| Name | string |
| SortBy | string |
| AccessCodes | string |
| Limit | string |
| Offset | string |
| Tags | string |
| Departments | string |
| Name | string |
| Ids | string |
| Limit | integer <int32> |
| Offset | integer <int32> |
| SortOrders | Array of strings |
| CheckSubSchedule | boolean |
| SubSchedule | boolean |
| MultiInstance | boolean |
| AutoBuild | boolean |
| IncludeDetails | boolean |
| IgnoreCase | boolean |
| BasicDetails | boolean |
| Sortby | string |
| Name | string |
| Ids | string |
| Limit | integer <int32> |
| Offset | integer <int32> |
| SortOrders | Array of strings |
| CheckSubSchedule | boolean |
| SubSchedule | boolean |
| MultiInstance | boolean |
| AutoBuild | boolean |
| IncludeDetails | boolean |
| IgnoreCase | boolean |
| BasicDetails | boolean |
| Sortby | string |
| id | integer <int32> |
| name | string or null |
| description | string or null |
Array of objects or null (MasterVisionCard) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "masterVisionCards": [
- {
- "id": 0,
- "version": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "name": "string",
- "description": "string",
- "tagPattern": "string",
- "offset": 0,
- "qosTolerableThreshold": 0,
- "qosCriticalThreshold": 0,
- "slaTolerableThreshold": 0,
- "slaCriticalThreshold": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- null
], - "departmentFunctionPrivileges": [
- null
], - "machinePrivileges": [
- null
], - "machineGroupPrivileges": [
- null
], - "accessibleScheduleIds": [
- null
], - "accessibleEmbeddedScriptIds": [
- null
], - "accessibleServiceRequestIds": [
- null
], - "accessibleBatchUserIds": [
- null
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- null
], - "departmentFunctionPrivileges": [
- null
], - "machinePrivileges": [
- null
], - "machineGroupPrivileges": [
- null
], - "accessibleScheduleIds": [
- null
], - "accessibleEmbeddedScriptIds": [
- null
], - "accessibleServiceRequestIds": [
- null
], - "accessibleBatchUserIds": [
- null
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "parentMasterVisionCard": { },
- "parentId": 0,
- "associatedFrequencies": [
- {
- "id": 0,
- "visionFrequency": {
- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}, - "triggerConditions": [
- {
- "id": 0,
- "statusId": 0,
- "condition": {
- "id": 0,
- "name": "string"
}, - "runnables": [
- {
- "id": 0,
- "actionId": 0,
- "name": "string",
- "detailId": 0,
- "detail": "string",
- "action": {
- "id": null,
- "name": null,
- "actionDetails": [ ]
}, - "repeatAfterMinutes": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": null,
- "id": null,
- "name": null,
- "description": null,
- "databaseConnection": null,
- "apiBaseUrl": null,
- "solutionManagerBaseUrl": null,
- "adminUser": null,
- "adminToken": null,
- "masterInstanceId": null,
- "connectionString": null,
- "visionActionUsers": [ ]
}, - "lastRepeated": "2019-08-24T14:15:22Z"
}
]
}
], - "slas": [
- {
- "slaId": 0,
- "requirement": {
- "id": 0,
- "name": "string"
}, - "time": "string",
- "internalTime": "2019-08-24T14:15:22Z",
- "masterVisionCardFrequencyId": 0,
- "offset": 0
}
], - "masterVisionCardFrequencyId": 0
}
], - "roleId": 0,
- "roleName": "string",
- "associatedRoles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "children": [
- { }
]
}
]
}| id required | integer <int32> |
| id | integer <int32> |
| name | string or null |
| description | string or null |
Array of objects or null (MasterVisionCard) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "masterVisionCards": [
- {
- "id": 0,
- "version": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "name": "string",
- "description": "string",
- "tagPattern": "string",
- "offset": 0,
- "qosTolerableThreshold": 0,
- "qosCriticalThreshold": 0,
- "slaTolerableThreshold": 0,
- "slaCriticalThreshold": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- null
], - "departmentFunctionPrivileges": [
- null
], - "machinePrivileges": [
- null
], - "machineGroupPrivileges": [
- null
], - "accessibleScheduleIds": [
- null
], - "accessibleEmbeddedScriptIds": [
- null
], - "accessibleServiceRequestIds": [
- null
], - "accessibleBatchUserIds": [
- null
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- null
], - "departmentFunctionPrivileges": [
- null
], - "machinePrivileges": [
- null
], - "machineGroupPrivileges": [
- null
], - "accessibleScheduleIds": [
- null
], - "accessibleEmbeddedScriptIds": [
- null
], - "accessibleServiceRequestIds": [
- null
], - "accessibleBatchUserIds": [
- null
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "parentMasterVisionCard": { },
- "parentId": 0,
- "associatedFrequencies": [
- {
- "id": 0,
- "visionFrequency": {
- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}, - "triggerConditions": [
- {
- "id": 0,
- "statusId": 0,
- "condition": {
- "id": 0,
- "name": "string"
}, - "runnables": [
- {
- "id": 0,
- "actionId": 0,
- "name": "string",
- "detailId": 0,
- "detail": "string",
- "action": {
- "id": null,
- "name": null,
- "actionDetails": [ ]
}, - "repeatAfterMinutes": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": null,
- "id": null,
- "name": null,
- "description": null,
- "databaseConnection": null,
- "apiBaseUrl": null,
- "solutionManagerBaseUrl": null,
- "adminUser": null,
- "adminToken": null,
- "masterInstanceId": null,
- "connectionString": null,
- "visionActionUsers": [ ]
}, - "lastRepeated": "2019-08-24T14:15:22Z"
}
]
}
], - "slas": [
- {
- "slaId": 0,
- "requirement": {
- "id": 0,
- "name": "string"
}, - "time": "string",
- "internalTime": "2019-08-24T14:15:22Z",
- "masterVisionCardFrequencyId": 0,
- "offset": 0
}
], - "masterVisionCardFrequencyId": 0
}
], - "roleId": 0,
- "roleName": "string",
- "associatedRoles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "children": [
- { }
]
}
]
}Sample request (this returns a list of machines by name in descending order):
GET /api/machines?sortby=name:desc
| ResourceName | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| includeDocumentation | boolean |
| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| Ids | string |
| Name | string |
| Type | string |
| Typeids | string |
| GroupName | string |
| GroupIds | string |
| States | string |
| Version | string |
| FileTransferRole | string |
| Sockets | string |
| Tls | boolean |
| SortBy | string |
| IncludeDetails | boolean |
| ExcludeNullMachine | boolean |
| SortOrders | Array of strings |
| ExtendedProperties | boolean |
| HasAdminAccess | boolean |
Array of objects (ApiError) | |
Array of objects (AuxillaryProperty) |
[- {
- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSMACommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}
]| id | integer or null <int32> |
| name | string or null |
| currentJobs | integer or null <int32> |
| gatewayId | integer or null <int32> |
Array of objects or null (MachineGroup) | |
| lastUpdateDateTime | string or null |
| lastUpdate | number or null <double> |
| maximumJobs | integer or null <int32> |
| opConMaximumJobs | integer or null <int32> |
| socket | integer or null <int32> |
object (MachineStatus) | |
object (LsamType) | |
Array of objects or null (CrossReferenceMasterJob) | |
Array of objects or null (CrossReferenceDailyJob) | |
| acceptMessagesfromIp | string or null |
| agentCheckCrc | boolean or null |
| agentFileTransferPortNumberForTls | string or null |
| agentName | string or null |
| _agentSmaCommunicationsProtocol | string or null |
| agentSocket | string or null |
| agentSpecialFeatures | string or null |
| agentSupportNonTlsForSmaftAgent | string or null |
| agentSupportNonTlsForSmaftServer | string or null |
| agentSupportTlsForSmaftAgent | string or null |
| agentSupportTlsForSmaftServer | string or null |
| _allowKillJob | boolean or null |
| allowKillJob | boolean or null |
Array of objects or null (InstanceProperty) | |
| _checkCertificateRevocationList | boolean or null |
| checkCertificateRevocationList | boolean or null |
| checkCrc | string or null |
| checkMachineStatusInterval | integer or null <int32> |
| closeSocket | string or null |
| closeSocketDuringSynchronization | boolean or null |
| connectionAttemptTimeout | integer or null <int32> |
| consecutiveSendSleepTimeMilliseconds | integer or null <int32> |
| cpuCount | string or null |
| cpuId | string or null |
| cpuModel | string or null |
| cpuType | string or null |
| documentation | string or null |
| fileTransferFeature | string or null |
| fileTransferIpAddress | string or null |
| _fileTransferPortNumberForNonTls | integer or null <int32> |
| fileTransferPortNumberForNonTls | integer or null <int32> |
| _fileTransferPortNumberForTls | integer or null <int32> |
| fileTransferPortNumberForTls | integer or null <int32> |
| _fileTransferRole | string or null |
| fileTransferRole | string or null |
| fullFileTransferSupport | boolean or null |
| fullyQualifiedDomainName | string or null |
| gatewayName | string or null |
| hostname | string or null |
| jorsFeature | string or null |
| _jorsPortNumber | integer or null <int32> |
| jorsPortNumber | integer or null <int32> |
| jorsSocket | string or null |
| lsamTime | number or null <double> |
| lsamTimeDeltafromSam | integer or null <int32> |
| machineMaximumJobs | string or null |
| maxBytesReadPerMessage | integer or null <int32> |
| maxBytesSentPerMessage | integer or null <int32> |
| maxConsecutiveSendMessages | integer or null <int32> |
| noBufferRetryCount | integer or null <int32> |
| noBufferSleepTime | integer or null <int32> |
| osType | string or null |
| osVersion | string or null |
| pollInterval | integer or null <int32> |
| receiveBufferCount | integer or null <int32> |
| _requiresXmlEscape | boolean or null |
| requiresXmlEscape | boolean or null |
| resourceMonitorFeature | string or null |
| responseTimeoutInSeconds | integer or null <int32> |
| sendBufferCount | integer or null <int32> |
| smaCommunicationsProtocol | string or null |
| smaftAgentPort | string or null |
| smaftServerPortForNonTls | string or null |
| smaNetComIdentifier | string or null |
| smaNetComSocket | string or null |
| supportedAgentCapability | Array of strings or null |
| _supportNonTlsForSmaftAgent | boolean or null |
| supportNonTLSForSMAFTAgent | boolean or null |
| _supportNonTlsForSmaftServer | boolean or null |
| supportNonTLSForSMAFTServer | boolean or null |
| _supportTLSForSMAFTAgent | boolean or null |
| supportTLSForSMAFTAgent | boolean or null |
| _supportTLSForSMAFTServer | boolean or null |
| supportTLSForSMAFTServer | boolean or null |
| supportsHandshake | string or null |
| tcpIpAddress | string or null |
| timeOffsetfromSamInHours | number or null <double> |
| timeOffsetfromUtcInHours | number or null <double> |
| timeSent | string or null |
| timeZoneName | string or null |
| tlsCertificateDistinguishedName | string or null |
| _tlsCertificateSerialNumber | string or null |
| tlsCertificateSerialNumber | string or null |
| traceAllMessages | boolean or null |
| _useTLSforSchedulingCommunications | boolean or null |
| useTLSforSchedulingCommunications | boolean or null |
| agentVersion | string or null |
| hpNonStopIpAddress | string or null |
| hpNonStopSocketNumber | integer or null <int32> |
| _sapBwClientId | integer or null <int32> |
| sapBwClientId | integer or null <int32> |
| _sapBwGateway | string or null |
| sapBwGateway | string or null |
| _sapBwGroup | string or null |
| sapBwGroup | string or null |
| _sapBwName | string or null |
| sapBwName | string or null |
| _sapBwQueryListenerPort | integer or null <int32> |
| sapBwQueryListenerPort | integer or null <int32> |
| _sapBwSystemNumber | integer or null <int32> |
| sapBwSystemNumber | integer or null <int32> |
| _sapBwRfcTrace | integer or null <int32> |
| sapBwRfcTrace | string or null |
| _sapR3andCrmAuditLevel | integer or null <int32> |
| sapR3andCrmAuditLevel | string or null |
| _sapR3andCrmClientId | integer or null <int32> |
| sapR3andCrmClientId | integer or null <int32> |
| _sapEvents | Array of strings or null |
| sapEvents | Array of strings or null |
| _sapR3andCrmGateway | string or null |
| sapR3andCrmGateway | string or null |
| _sapR3andCrmGroup | string or null |
| sapR3andCrmGroup | string or null |
| _sapR3andCrmName | string or null |
| sapR3andCrmName | string or null |
| _sapR3andCrmQueryListenerPort | integer or null <int32> |
| sapR3andCrmQueryListenerPort | integer or null <int32> |
| _sapR3andCrmSystemNumber | integer or null <int32> |
| sapR3andCrmSystemNumber | integer or null <int32> |
| _sapR3andCrmRfcTrace | integer or null <int32> |
| sapR3andCrmRfcTrace | string or null |
{- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}| ResourceName | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| includeDocumentation | boolean |
| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| Ids | string |
| Name | string |
| Type | string |
| Typeids | string |
| GroupName | string |
| GroupIds | string |
| States | string |
| Version | string |
| FileTransferRole | string |
| Sockets | string |
| Tls | boolean |
| SortBy | string |
| IncludeDetails | boolean |
| ExcludeNullMachine | boolean |
| SortOrders | Array of strings |
| ExtendedProperties | boolean |
| HasAdminAccess | boolean |
Array of objects (ApiError) | |
Array of objects (AuxillaryProperty) |
| ResourceName | string |
| Offset | integer <int32> |
| Limit | integer <int32> |
| includeDocumentation | boolean |
| IncludeAssignedMasterJobs | boolean |
| IncludeAssignedDailyJobs | boolean |
| Ids | string |
| Name | string |
| Type | string |
| Typeids | string |
| GroupName | string |
| GroupIds | string |
| States | string |
| Version | string |
| FileTransferRole | string |
| Sockets | string |
| Tls | boolean |
| SortBy | string |
| IncludeDetails | boolean |
| ExcludeNullMachine | boolean |
| SortOrders | Array of strings |
| ExtendedProperties | boolean |
| HasAdminAccess | boolean |
Array of objects (ApiError) | |
Array of objects (AuxillaryProperty) |
| id required | integer <int32> |
| id | integer or null <int32> |
| name | string or null |
| currentJobs | integer or null <int32> |
| gatewayId | integer or null <int32> |
Array of objects or null (MachineGroup) | |
| lastUpdateDateTime | string or null |
| lastUpdate | number or null <double> |
| maximumJobs | integer or null <int32> |
| opConMaximumJobs | integer or null <int32> |
| socket | integer or null <int32> |
object (MachineStatus) | |
object (LsamType) | |
Array of objects or null (CrossReferenceMasterJob) | |
Array of objects or null (CrossReferenceDailyJob) | |
| acceptMessagesfromIp | string or null |
| agentCheckCrc | boolean or null |
| agentFileTransferPortNumberForTls | string or null |
| agentName | string or null |
| _agentSmaCommunicationsProtocol | string or null |
| agentSocket | string or null |
| agentSpecialFeatures | string or null |
| agentSupportNonTlsForSmaftAgent | string or null |
| agentSupportNonTlsForSmaftServer | string or null |
| agentSupportTlsForSmaftAgent | string or null |
| agentSupportTlsForSmaftServer | string or null |
| _allowKillJob | boolean or null |
| allowKillJob | boolean or null |
Array of objects or null (InstanceProperty) | |
| _checkCertificateRevocationList | boolean or null |
| checkCertificateRevocationList | boolean or null |
| checkCrc | string or null |
| checkMachineStatusInterval | integer or null <int32> |
| closeSocket | string or null |
| closeSocketDuringSynchronization | boolean or null |
| connectionAttemptTimeout | integer or null <int32> |
| consecutiveSendSleepTimeMilliseconds | integer or null <int32> |
| cpuCount | string or null |
| cpuId | string or null |
| cpuModel | string or null |
| cpuType | string or null |
| documentation | string or null |
| fileTransferFeature | string or null |
| fileTransferIpAddress | string or null |
| _fileTransferPortNumberForNonTls | integer or null <int32> |
| fileTransferPortNumberForNonTls | integer or null <int32> |
| _fileTransferPortNumberForTls | integer or null <int32> |
| fileTransferPortNumberForTls | integer or null <int32> |
| _fileTransferRole | string or null |
| fileTransferRole | string or null |
| fullFileTransferSupport | boolean or null |
| fullyQualifiedDomainName | string or null |
| gatewayName | string or null |
| hostname | string or null |
| jorsFeature | string or null |
| _jorsPortNumber | integer or null <int32> |
| jorsPortNumber | integer or null <int32> |
| jorsSocket | string or null |
| lsamTime | number or null <double> |
| lsamTimeDeltafromSam | integer or null <int32> |
| machineMaximumJobs | string or null |
| maxBytesReadPerMessage | integer or null <int32> |
| maxBytesSentPerMessage | integer or null <int32> |
| maxConsecutiveSendMessages | integer or null <int32> |
| noBufferRetryCount | integer or null <int32> |
| noBufferSleepTime | integer or null <int32> |
| osType | string or null |
| osVersion | string or null |
| pollInterval | integer or null <int32> |
| receiveBufferCount | integer or null <int32> |
| _requiresXmlEscape | boolean or null |
| requiresXmlEscape | boolean or null |
| resourceMonitorFeature | string or null |
| responseTimeoutInSeconds | integer or null <int32> |
| sendBufferCount | integer or null <int32> |
| smaCommunicationsProtocol | string or null |
| smaftAgentPort | string or null |
| smaftServerPortForNonTls | string or null |
| smaNetComIdentifier | string or null |
| smaNetComSocket | string or null |
| supportedAgentCapability | Array of strings or null |
| _supportNonTlsForSmaftAgent | boolean or null |
| supportNonTLSForSMAFTAgent | boolean or null |
| _supportNonTlsForSmaftServer | boolean or null |
| supportNonTLSForSMAFTServer | boolean or null |
| _supportTLSForSMAFTAgent | boolean or null |
| supportTLSForSMAFTAgent | boolean or null |
| _supportTLSForSMAFTServer | boolean or null |
| supportTLSForSMAFTServer | boolean or null |
| supportsHandshake | string or null |
| tcpIpAddress | string or null |
| timeOffsetfromSamInHours | number or null <double> |
| timeOffsetfromUtcInHours | number or null <double> |
| timeSent | string or null |
| timeZoneName | string or null |
| tlsCertificateDistinguishedName | string or null |
| _tlsCertificateSerialNumber | string or null |
| tlsCertificateSerialNumber | string or null |
| traceAllMessages | boolean or null |
| _useTLSforSchedulingCommunications | boolean or null |
| useTLSforSchedulingCommunications | boolean or null |
| agentVersion | string or null |
| hpNonStopIpAddress | string or null |
| hpNonStopSocketNumber | integer or null <int32> |
| _sapBwClientId | integer or null <int32> |
| sapBwClientId | integer or null <int32> |
| _sapBwGateway | string or null |
| sapBwGateway | string or null |
| _sapBwGroup | string or null |
| sapBwGroup | string or null |
| _sapBwName | string or null |
| sapBwName | string or null |
| _sapBwQueryListenerPort | integer or null <int32> |
| sapBwQueryListenerPort | integer or null <int32> |
| _sapBwSystemNumber | integer or null <int32> |
| sapBwSystemNumber | integer or null <int32> |
| _sapBwRfcTrace | integer or null <int32> |
| sapBwRfcTrace | string or null |
| _sapR3andCrmAuditLevel | integer or null <int32> |
| sapR3andCrmAuditLevel | string or null |
| _sapR3andCrmClientId | integer or null <int32> |
| sapR3andCrmClientId | integer or null <int32> |
| _sapEvents | Array of strings or null |
| sapEvents | Array of strings or null |
| _sapR3andCrmGateway | string or null |
| sapR3andCrmGateway | string or null |
| _sapR3andCrmGroup | string or null |
| sapR3andCrmGroup | string or null |
| _sapR3andCrmName | string or null |
| sapR3andCrmName | string or null |
| _sapR3andCrmQueryListenerPort | integer or null <int32> |
| sapR3andCrmQueryListenerPort | integer or null <int32> |
| _sapR3andCrmSystemNumber | integer or null <int32> |
| sapR3andCrmSystemNumber | integer or null <int32> |
| _sapR3andCrmRfcTrace | integer or null <int32> |
| sapR3andCrmRfcTrace | string or null |
{- "id": 0,
- "name": "string",
- "currentJobs": 0,
- "gatewayId": 0,
- "groups": [
- {
- "id": 0,
- "documentation": "string",
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}, - "machines": [
- { }
], - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
]
}
], - "lastUpdateDateTime": "string",
- "lastUpdate": 0,
- "maximumJobs": 0,
- "opConMaximumJobs": 0,
- "socket": 0,
- "state": {
- "state": "string",
- "networkStatus": "string",
- "operationStatus": "string"
}, - "type": {
- "id": 0,
- "description": "string"
}, - "assignedMasterJobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "assignedDailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "acceptMessagesfromIp": "string",
- "agentCheckCrc": true,
- "agentFileTransferPortNumberForTls": "string",
- "agentName": "string",
- "_agentSmaCommunicationsProtocol": "string",
- "agentSocket": "string",
- "agentSpecialFeatures": "string",
- "agentSupportNonTlsForSmaftAgent": "string",
- "agentSupportNonTlsForSmaftServer": "string",
- "agentSupportTlsForSmaftAgent": "string",
- "agentSupportTlsForSmaftServer": "string",
- "_allowKillJob": true,
- "allowKillJob": true,
- "availableProperties": [
- [
- {
- "key": "string",
- "value": "string"
}
]
], - "_checkCertificateRevocationList": true,
- "checkCertificateRevocationList": true,
- "checkCrc": "string",
- "checkMachineStatusInterval": 0,
- "closeSocket": "string",
- "closeSocketDuringSynchronization": true,
- "connectionAttemptTimeout": 0,
- "consecutiveSendSleepTimeMilliseconds": 0,
- "cpuCount": "string",
- "cpuId": "string",
- "cpuModel": "string",
- "cpuType": "string",
- "documentation": "string",
- "fileTransferFeature": "string",
- "fileTransferIpAddress": "string",
- "_fileTransferPortNumberForNonTls": 0,
- "fileTransferPortNumberForNonTls": 0,
- "_fileTransferPortNumberForTls": 0,
- "fileTransferPortNumberForTls": 0,
- "_fileTransferRole": "string",
- "fileTransferRole": "string",
- "fullFileTransferSupport": true,
- "fullyQualifiedDomainName": "string",
- "gatewayName": "string",
- "hostname": "string",
- "jorsFeature": "string",
- "_jorsPortNumber": 0,
- "jorsPortNumber": 0,
- "jorsSocket": "string",
- "lsamTime": 0,
- "lsamTimeDeltafromSam": 0,
- "machineMaximumJobs": "string",
- "maxBytesReadPerMessage": 0,
- "maxBytesSentPerMessage": 0,
- "maxConsecutiveSendMessages": 0,
- "noBufferRetryCount": 0,
- "noBufferSleepTime": 0,
- "osType": "string",
- "osVersion": "string",
- "pollInterval": 0,
- "receiveBufferCount": 0,
- "_requiresXmlEscape": true,
- "requiresXmlEscape": true,
- "resourceMonitorFeature": "string",
- "responseTimeoutInSeconds": 0,
- "sendBufferCount": 0,
- "smaCommunicationsProtocol": "string",
- "smaftAgentPort": "string",
- "smaftServerPortForNonTls": "string",
- "smaNetComIdentifier": "string",
- "smaNetComSocket": "string",
- "supportedAgentCapability": [
- "string"
], - "_supportNonTlsForSmaftAgent": true,
- "supportNonTLSForSMAFTAgent": true,
- "_supportNonTlsForSmaftServer": true,
- "supportNonTLSForSMAFTServer": true,
- "_supportTLSForSMAFTAgent": true,
- "supportTLSForSMAFTAgent": true,
- "_supportTLSForSMAFTServer": true,
- "supportTLSForSMAFTServer": true,
- "supportsHandshake": "string",
- "tcpIpAddress": "string",
- "timeOffsetfromSamInHours": 0,
- "timeOffsetfromUtcInHours": 0,
- "timeSent": "string",
- "timeZoneName": "string",
- "tlsCertificateDistinguishedName": "string",
- "_tlsCertificateSerialNumber": "string",
- "tlsCertificateSerialNumber": "string",
- "traceAllMessages": true,
- "_useTLSforSchedulingCommunications": true,
- "useTLSforSchedulingCommunications": true,
- "agentVersion": "string",
- "hpNonStopIpAddress": "string",
- "hpNonStopSocketNumber": 0,
- "_sapBwClientId": 0,
- "sapBwClientId": 0,
- "_sapBwGateway": "string",
- "sapBwGateway": "string",
- "_sapBwGroup": "string",
- "sapBwGroup": "string",
- "_sapBwName": "string",
- "sapBwName": "string",
- "_sapBwQueryListenerPort": 0,
- "sapBwQueryListenerPort": 0,
- "_sapBwSystemNumber": 0,
- "sapBwSystemNumber": 0,
- "_sapBwRfcTrace": 0,
- "sapBwRfcTrace": "string",
- "_sapR3andCrmAuditLevel": 0,
- "sapR3andCrmAuditLevel": "string",
- "_sapR3andCrmClientId": 0,
- "sapR3andCrmClientId": 0,
- "_sapEvents": [
- "string"
], - "sapEvents": [
- "string"
], - "_sapR3andCrmGateway": "string",
- "sapR3andCrmGateway": "string",
- "_sapR3andCrmGroup": "string",
- "sapR3andCrmGroup": "string",
- "_sapR3andCrmName": "string",
- "sapR3andCrmName": "string",
- "_sapR3andCrmQueryListenerPort": 0,
- "sapR3andCrmQueryListenerPort": 0,
- "_sapR3andCrmSystemNumber": 0,
- "sapR3andCrmSystemNumber": 0,
- "_sapR3andCrmRfcTrace": 0,
- "sapR3andCrmRfcTrace": "string"
}Sample request:
POST /api/syncRunningJobs
{
"machine": {
"id": 1
}
object (MachineToSync) | |
| runningJobsCount | integer <int32> |
{- "machine": {
- "id": 0
}, - "runningJobsCount": 0
}{- "machine": {
- "id": 0
}, - "runningJobsCount": 0
}Sample request:
GET /api/notificationCategories?limit=1&offset=1
"id":2,
"category": "Category2",
"groups": [
{
"id": 1,
"name": "Group1"
}
]
}
| Id | integer <int32> The id of the category to fetch |
| Name | string The name of the category to fetch |
| Limit | integer <int32> Limit the number of records to fetch |
| Offset | integer <int32> Offset the number of records being fetched |
| IgnoreCase | boolean Use case-insensitive search criteria |
| SortBy | string Option to sort by name |
{- "id": 0,
- "category": "string",
- "groups": [
- {
- "id": 0,
- "name": "string"
}
]
}Sample request:
POST /api/notificationCategories
{ "category": "newCategory", "groups": [ { "id": 1, "name": "Group1" } ] }
| id | integer <int32> |
| category required | string [ 1 .. 4000 ] characters |
Array of objects or null (NotificationCategoryGroup) |
{- "id": 0,
- "category": "string",
- "groups": [
- {
- "id": 0,
- "name": "string"
}
]
}{- "id": 0,
- "category": "string",
- "groups": [
- {
- "id": 0,
- "name": "string"
}
]
}Sample request:
PUT /api/notificationCategories/1
{ "id": 1, "category": "updated Sample Category", "groups": [ { "id": 1, "name": "Group1" } ] }
| notificationCategoryId required | integer <int32> |
| id | integer <int32> |
| category required | string [ 1 .. 4000 ] characters |
Array of objects or null (NotificationCategoryGroup) |
{- "id": 0,
- "category": "string",
- "groups": [
- {
- "id": 0,
- "name": "string"
}
]
}{- "id": 0,
- "category": "string",
- "groups": [
- {
- "id": 0,
- "name": "string"
}
]
}Sample request (this returns a list of Schedules): GET /api/notificationGroups/schedules?Name=testScheduleName
| Name | string Name of the object of interest to fetch (Can accept ? and * wildcards) |
| Type | string Type of the object of interest to fetch (Can accept ? and * wildcards) |
| MachineTypes | string Comma-separeted list of type of the machines to fetch |
| Ids | string Comma-separated list of the object of interest unique identifier values |
| Limit | integer <int32> Limits the results being fetched. 0 retrieves just a count |
| Offset | integer <int32> Retrieves records beginning at this record number |
| IgnoreCase | boolean Use case-insensitive search criteria |
| SortBy | string Option to sort values by different parameter fields |
| BasicDetails | boolean Flag to retrieve basic details only |
| HasAdminAccess | boolean Flag to determine admin access |
| Show | integer <int32> (NotificationGroupShow) Enum: 0 1 2 Retrieve All ids, Selected ids, or NotSelected ids. Used by notificationGroups/{groupType} endpoints only. Default is All. |
| GroupId | integer <int32> Limits the results of Show to the specified group id. Used by notificationGroups/{groupType} endpoints only. |
[- {
- "id": 0,
- "name": "string"
}
]Sample request (this returns a list of Schedules): GET /api/notificationGroups/jobs?Name=sampleJobName
| Name | string Name of the object of interest to fetch (Can accept ? and * wildcards) |
| Type | string Type of the object of interest to fetch (Can accept ? and * wildcards) |
| MachineTypes | string Comma-separeted list of type of the machines to fetch |
| Ids | string Comma-separated list of the object of interest unique identifier values |
| Limit | integer <int32> Limits the results being fetched. 0 retrieves just a count |
| Offset | integer <int32> Retrieves records beginning at this record number |
| IgnoreCase | boolean Use case-insensitive search criteria |
| SortBy | string Option to sort values by different parameter fields |
| BasicDetails | boolean Flag to retrieve basic details only |
| HasAdminAccess | boolean Flag to determine admin access |
| Show | integer <int32> (NotificationGroupShow) Enum: 0 1 2 Retrieve All ids, Selected ids, or NotSelected ids. Used by notificationGroups/{groupType} endpoints only. Default is All. |
| GroupId | integer <int32> Limits the results of Show to the specified group id. Used by notificationGroups/{groupType} endpoints only. |
[- {
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
]Sample request (this returns a list of Schedules): GET /api/notificationGroups/machines?Name=sampleMachineName
| Name | string Name of the object of interest to fetch (Can accept ? and * wildcards) |
| Type | string Type of the object of interest to fetch (Can accept ? and * wildcards) |
| MachineTypes | string Comma-separeted list of type of the machines to fetch |
| Ids | string Comma-separated list of the object of interest unique identifier values |
| Limit | integer <int32> Limits the results being fetched. 0 retrieves just a count |
| Offset | integer <int32> Retrieves records beginning at this record number |
| IgnoreCase | boolean Use case-insensitive search criteria |
| SortBy | string Option to sort values by different parameter fields |
| BasicDetails | boolean Flag to retrieve basic details only |
| HasAdminAccess | boolean Flag to determine admin access |
| Show | integer <int32> (NotificationGroupShow) Enum: 0 1 2 Retrieve All ids, Selected ids, or NotSelected ids. Used by notificationGroups/{groupType} endpoints only. Default is All. |
| GroupId | integer <int32> Limits the results of Show to the specified group id. Used by notificationGroups/{groupType} endpoints only. |
[- {
- "id": 0,
- "name": "string",
- "type": {
- "id": 0,
- "description": "string"
}
}
]Sample request (this returns a list of NotificationGroups): GET /api/NotificationGroups
| Name | string Name of the object of interest to fetch (Can accept ? and * wildcards) |
| Type | string Type of the object of interest to fetch (Can accept ? and * wildcards) |
| MachineTypes | string Comma-separeted list of type of the machines to fetch |
| Ids | string Comma-separated list of the object of interest unique identifier values |
| Limit | integer <int32> Limits the results being fetched. 0 retrieves just a count |
| Offset | integer <int32> Retrieves records beginning at this record number |
| IgnoreCase | boolean Use case-insensitive search criteria |
| SortBy | string Option to sort values by different parameter fields |
| BasicDetails | boolean Flag to retrieve basic details only |
| HasAdminAccess | boolean Flag to determine admin access |
| Show | integer <int32> (NotificationGroupShow) Enum: 0 1 2 Retrieve All ids, Selected ids, or NotSelected ids. Used by notificationGroups/{groupType} endpoints only. Default is All. |
| GroupId | integer <int32> Limits the results of Show to the specified group id. Used by notificationGroups/{groupType} endpoints only. |
[- {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}
]Sample request (this creates a new notification group):
POST /api/notificationgroups/1
{
"name": "NotificationGroup",
"excludeSelected": false,
"selected": [
{
"id":2,
"name": "UnixMachine"
}
],
"categories":[
"Tag1"
],
"type": "J"
}
| id | integer or null <int32> Id for the notification group |
| name | string or null Name for the notification group |
| excludeSelected | boolean or null Boolean to specify if selected items will be included or excluded |
Array of objects or null (NotificationGroupSelectedItem) Jobs, Schedules or Machines associated with the notification group | |
| categories | Array of strings or null Categories associated with the notification group |
| type | string or null Notification group type (System, User) Valid values = machine, schedule or job |
| parentGroupId | integer or null <int32> |
{- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}{- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}Sample request (this updates the notification group):
PUT /api/notificationgroups/1
{
"id": 1,
"name": "NotificationGroup",
"excludeSelected": false,
"selected": [
{
"id":2,
"name": "UnixMachine"
}
],
"categories":[
"Tag1"
],
"type": "J"
}
| id required | integer <int32> The unique identifier of the notification group |
The notification group object to update
| id | integer or null <int32> Id for the notification group |
| name | string or null Name for the notification group |
| excludeSelected | boolean or null Boolean to specify if selected items will be included or excluded |
Array of objects or null (NotificationGroupSelectedItem) Jobs, Schedules or Machines associated with the notification group | |
| categories | Array of strings or null Categories associated with the notification group |
| type | string or null Notification group type (System, User) Valid values = machine, schedule or job |
| parentGroupId | integer or null <int32> |
{- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}{- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}Sample request (this deletes the notification group):
DELETE /api/notificationgroup/1
| id required | integer <int32> The unique identifier of the notification group |
{- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}{- "id": 0,
- "type": "string",
- "trigger": {
- "name": "string"
}, - "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}
}Sample request:
GET /api/notificationtriggers/1|Audit History Purge
| jobId required | string The job id. |
[- {
- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- null
], - "departmentFunctionPrivileges": [
- null
], - "machinePrivileges": [
- null
], - "machineGroupPrivileges": [
- null
], - "accessibleScheduleIds": [
- null
], - "accessibleEmbeddedScriptIds": [
- null
], - "accessibleServiceRequestIds": [
- null
], - "accessibleBatchUserIds": [
- null
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}
]Sample request (this returns a of notification trigger with the specified name ):
GET /api/notificationtriggers?name=NTName
| Name | string Name of the trigger to fetch (Can accept ? and * wildcards) |
| Description | string Descriptyion of the trigger to fetch (Can accept ? and * wildcards) |
| GroupType | string Group type of the trigger to fetch: Job, Machine, or Schedule |
| Categories | string Categories of the group for the trigger to fetch (Can accept ? and * wildcards) |
| Notifications | string Notifications of the group for the trigger to fetch (Can accept ? and * wildcards) |
| Contents | string Content of the trigger message (Can accept ? and * wildcards) |
| GroupId | integer <int32> Unique identifier value of the notification group to be associated with the triggers to fetch |
| Group | string Name of the notification group to be associated with the triggers to fetch (Can accept ? and * wildcards) |
| Ids | string Comma-separated list of triggers unique identifier values |
| HasAdminAccess | boolean Flag to determine admin access |
| Limit | integer <int32> [ 0 .. 2147483647 ] Limits the results being fetched |
| Offset | integer <int32> [ 0 .. 2147483647 ] Retrieves records beginning at this record number |
| SortBy | string Sort by (group, groupType, name, description |
| IgnoreCase | boolean Use case-insensitive search criteria. |
| IncludeDetails | boolean Flag to return essages and group categories. Default is true. |
| GroupIds | string Comma-separated list of group ids. |
[- {
- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- null
], - "departmentFunctionPrivileges": [
- null
], - "machinePrivileges": [
- null
], - "machineGroupPrivileges": [
- null
], - "accessibleScheduleIds": [
- null
], - "accessibleEmbeddedScriptIds": [
- null
], - "accessibleServiceRequestIds": [
- null
], - "accessibleBatchUserIds": [
- null
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}
]Sample request (this creates a new notification trigger):
POST /api/notificationtriggers
{
"name": "Job Finished Ok",
"description": "",
"includeInternalJobNumber": true,
"group": {
"id": 1, "name": "someJobTriggersGroup",
"categories": ["critical","daily"]
},
"notifications": [
]
}
| id | integer or null <int32> The id of the notification trigger |
| name required | string non-empty The name of the notification trigger |
| description | string or null The description of the notification trigger |
| includeInternalJobNumber | boolean or null Specifies whether the internal job number will be included in the job name or not. |
object (NotificationGroup) | |
Array of objects or null (NotificationMessage) List of messages associated with the notification trigger | |
object (EscalationRule) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}{- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}Sample request (this updates the notification trigger):
PUT /api/notificationtriggers/1
{
"id": 1,
"name": "Job Failed",
"description": "Description",
"includeInternalJobNumber": false,
"group":
{
"id":2,
"name": "UnixMachine",
"categories":[
"Category1"
]
},
"messages": []
}
| id required | integer <int32> The unique identifier of the notification trigger |
The notification trigger object to update
| id | integer or null <int32> The id of the notification trigger |
| name required | string non-empty The name of the notification trigger |
| description | string or null The description of the notification trigger |
| includeInternalJobNumber | boolean or null Specifies whether the internal job number will be included in the job name or not. |
object (NotificationGroup) | |
Array of objects or null (NotificationMessage) List of messages associated with the notification trigger | |
object (EscalationRule) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}{- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}Sample request (this deletes the notification trigger):
DELETE /api/notificationtrigger/1
| id required | integer <int32> The unique identifier of the notification trigger |
{- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}Sample request (this send a request to test the email message): POST /api/notificationTriggers/test { , "messageType": "Email", //Options are: All, Email, Text, NetworkMessage, OpCon Event, Windows Event Log, RunCommand, SNMPTrap, SPO Event }
| messageType | string or null |
object (NotificationTrigger) An notification trigger with id and name fields |
{- "messageType": "string",
- "notificationTrigger": {
- "id": 0,
- "name": "string",
- "description": "string",
- "includeInternalJobNumber": true,
- "group": {
- "id": 0,
- "name": "string",
- "excludeSelected": true,
- "selected": [
- {
- "id": 0,
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string"
}
}
], - "categories": [
- "string"
], - "type": "string",
- "parentGroupId": 0
}, - "messages": [
- {
- "rule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}, - "windowsEventLog": {
- "severity": "string",
- "id": "string",
- "message": "string",
- "customSource": "string"
}, - "type": "string",
- "actionActive": true,
- "email": {
- "to": "string",
- "cc": "string",
- "bcc": "string",
- "subject": "string",
- "body": "string",
- "attachments": [
- "string"
], - "attachJORSOutput": true,
- "excludePrefixInformation": true
}, - "snmp": {
- "eventId": "string",
- "severity": "string",
- "message": "string"
}, - "opConEvents": [
- {
- "event": {
- "name": "string",
- "type": "string",
- "category": "string",
- "parameters": {
- "property1": "string",
- "property2": "string"
}
}, - "user": {
- "id": 0,
- "name": "string"
}
}
], - "networkMessage": {
- "recipient": "string",
- "message": "string"
}, - "text": {
- "to": "string",
- "message": "string"
}, - "runCommand": {
- "command": "string",
- "workingDirectory": "string",
- "batchUser": {
- "id": 0,
- "platform": {
- "id": 0,
- "name": "string"
}, - "loginName": "string",
- "password": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- null
], - "departmentFunctionPrivileges": [
- null
], - "machinePrivileges": [
- null
], - "machineGroupPrivileges": [
- null
], - "accessibleScheduleIds": [
- null
], - "accessibleEmbeddedScriptIds": [
- null
], - "accessibleServiceRequestIds": [
- null
], - "accessibleBatchUserIds": [
- null
]
}
}
], - "dailyJobs": [
- {
- "uniqueJobId": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "jobs": [
- {
- "id": "string",
- "jobName": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
], - "previousLoginName": "string"
}
}, - "spoco": {
- "instance": "string",
- "command": "string"
}, - "spoal": {
- "text": "string",
- "severity": "string",
- "alarmId": "string",
- "alarmQualification": "string"
}
}
], - "escalationRule": {
- "id": 0,
- "hasActiveEscalation": true,
- "name": "string",
- "sequences": [
- {
- "id": 0,
- "sequence": 0,
- "attempts": 0,
- "interval": 0,
- "group": {
- "name": "string",
- "id": 0
}
}
], - "crossReferences": [
- {
- "triggerName": "string",
- "escalationNotificationGroup": {
- "id": 0,
- "name": "string"
}
}
]
}
}
}| status | integer <int32> (RemoteInstanceStatus) Enum: 1 2 |
| id | integer <int32> The remote instance id. |
| name | string or null Defines the name for the remote instance. |
| description | string or null Description of the remote instance. |
object (RemoteInstanceDatabaseConnection) | |
| apiBaseUrl | string or null The remote instance's API URL. |
| solutionManagerBaseUrl | string or null The Solution Manager API URL. |
object (User) | |
object (Token) | |
| masterInstanceId | integer or null <int32> |
| connectionString | string or null |
Array of objects or null (User) List of vision action users. |
{- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}| id required | integer <int32> |
| status | integer <int32> (RemoteInstanceStatus) Enum: 1 2 |
| id | integer <int32> The remote instance id. |
| name | string or null Defines the name for the remote instance. |
| description | string or null Description of the remote instance. |
object (RemoteInstanceDatabaseConnection) | |
| apiBaseUrl | string or null The remote instance's API URL. |
| solutionManagerBaseUrl | string or null The Solution Manager API URL. |
object (User) | |
object (Token) | |
| masterInstanceId | integer or null <int32> |
| connectionString | string or null |
Array of objects or null (User) List of vision action users. |
{- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}Sample request (this updates the resource having id '1'):
PUT /api/resources/1
{
"id": 1,
"name": "R1",
"description": "Resource 1",
"value": 10
}
| id required | integer <int32> |
| id | integer or null <int32> Threshold id |
| name | string or null Threshold name |
| description | string or null Threshold description |
| value | integer or null <int32> Threshold value |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that update the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that update the threshold | |
| used | integer or null <int32> Number of times the resource is used |
| locked | boolean or null Flag to indicate if the resource is locked |
object (LockedByDailyJob) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}Sample request:
GET /api/resources/1
| id required | integer <int32> |
{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}Sample request:
POST /api/resources
{
"name": "R1",
"description": "Resource 1",
"value": 10
}
| id | integer or null <int32> Threshold id |
| name | string or null Threshold name |
| description | string or null Threshold description |
| value | integer or null <int32> Threshold value |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that update the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that update the threshold | |
| used | integer or null <int32> Number of times the resource is used |
| locked | boolean or null Flag to indicate if the resource is locked |
object (LockedByDailyJob) |
{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}Sample request:
GET /api/resources?name=R1
| IncludeDependentDailyJobs | boolean Flag to include dependent daily jobs |
| IncludeUpdatedByDailyJobs | boolean Flag to include thresholds updated by daily jobs |
| IncludeDependentMasterJobs | boolean Flag to include dependent master jobs |
| IncludeUpdatedByMasterJobs | boolean Flag to include thresholds updated by master jobs |
| Offset | integer <int32> Retrieves records beginning at this record number |
| Limit | integer <int32> Limits the results being fetched. 0 retrieves just a count |
| Name | string Threshold name |
| Value | integer <int32> Threshold value |
| Ids | string Comma-separated list of threshold ids |
| Description | string Threshold description |
| SortBy | string Options to sort by |
| SortOrders | Array of strings Sort order (id, name, description) |
[- {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "used": 0,
- "locked": true,
- "lockedByDailyJob": {
- "id": "string",
- "name": "string",
- "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}
}
]| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeAccessCodes | boolean |
| IncludeDepartmentFunctions | boolean |
| IncludeMachines | boolean |
| IncludeMachineGroups | boolean |
| IncludeSchedules | boolean |
| IncludeServiceRequests | boolean |
| IncludeBatchUsers | boolean |
| IncludeUsers | boolean |
| Name | string |
| Ids | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
| IncludeEmbeddedScripts | boolean |
| id | integer <int32> Numeric id of the role. optional |
| name | string or null Name of the role.Must be unique. optional |
Array of objects or null (User) | |
| inheritAllSchedulePrivileges | boolean or null When true, this role's privileges will be applied to all schedules. optional |
| inheritAllMachinePrivileges | boolean or null When true, this role's privileges will be applied to all machines. optional |
| inheritAllMachineGroupPrivileges | boolean or null When true, this role's privileges will be applied to all machine groups. optional |
| inheritAllEmbeddedScriptPrivileges | boolean or null When true, this role's privileges will be applied to all embeddedscripts. optional |
object (Permissions) |
{- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}| id required | integer <int32> |
| id | integer <int32> Numeric id of the role. optional |
| name | string or null Name of the role.Must be unique. optional |
Array of objects or null (User) | |
| inheritAllSchedulePrivileges | boolean or null When true, this role's privileges will be applied to all schedules. optional |
| inheritAllMachinePrivileges | boolean or null When true, this role's privileges will be applied to all machines. optional |
| inheritAllMachineGroupPrivileges | boolean or null When true, this role's privileges will be applied to all machine groups. optional |
| inheritAllEmbeddedScriptPrivileges | boolean or null When true, this role's privileges will be applied to all embeddedscripts. optional |
object (Permissions) |
{- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}Sample request (this sends a sap query for SAP B/W jobs):
POST /api/sapQueries
{ "type":"chains", "SapMachine":"SAPMACHINENAME", "language":"EN", "Criteria":[ {"name":"","value":""} ], }
| id | integer <int32> |
| status | string or null |
| type | string or null |
| sapMachine | string or null |
| user | string or null |
| externalUser | string or null |
| password | string or null |
| language | string or null |
| selection | string or null |
| jobName | string or null |
| jobCount | string or null |
| destination | string or null |
| systemId | string or null |
Array of objects or null (Criteria) | |
object (SapJobDetail) This is the jobDetail parameter | |
| abapName | string or null This is the abapName parameter |
| variantName | string or null This is the variantName parameter |
Array of objects or null (VariantParameter) This is the parameters parameter Required for creating abap variant | |
| isJobModify | boolean Specified when running JobCreate query but editing a daily job. |
| jobStepModified | boolean Specified when steps have been added, removed or order changed during job editind |
| action | string or null |
| message | string or null |
| requestIds | Array of integers or null <int64> |
| expiryTime | string <date-time> |
| userId | integer <int32> |
| result | string or null |
Array of objects or null (SapQueryResponseValues) | |
| errorMessage | string or null |
{- "id": 0,
- "status": "string",
- "type": "string",
- "sapMachine": "string",
- "user": "string",
- "externalUser": "string",
- "password": "string",
- "language": "string",
- "selection": "string",
- "jobName": "string",
- "jobCount": "string",
- "destination": "string",
- "systemId": "string",
- "criteria": [
- {
- "name": "string",
- "value": "string"
}
], - "jobDetail": {
- "jobName": "string",
- "jobCount": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "recipient": "string",
- "stepCount": 0,
- "stepDetails": [
- {
- "stepNumber": 0,
- "stepType": "string",
- "action": "string",
- "stepInfo": {
- "command": "string",
- "parameters": "string",
- "operatingSystem": "string",
- "targetServer": "string",
- "logExternalOutputToJobLog": true,
- "logExternalErrorsToJobLog": true,
- "jobWaitingExternalTermination": true,
- "activateTrace": true,
- "language": "string",
- "printOutputDevice": "string",
- "printNumberCopies": 999,
- "printImmediately": true,
- "printFormat": "string",
- "printSpoolRequestName": "string",
- "printSpoolRequestTitle": "string",
- "printSpoolRequestAuth": "string",
- "printCoverSheetCoverPage": "string",
- "printCoverSheetSelectionCoverSheet": true,
- "printCoverSheetsRecipient": "string",
- "printCoverSheetsDepartment": "string",
- "printOutputOptionsDeleteImmediately": true,
- "printOutputOptionsNewSpoolRequest": true,
- "printOutputOptionSpoolRetentionPeriod": "string",
- "printSpoolParameter": 0
}
}
]
}, - "abapName": "string",
- "variantName": "string",
- "parameters": [
- {
- "name": "string",
- "low": "string",
- "high": "string",
- "kind": "string",
- "option": "string",
- "sign": "string"
}
], - "isJobModify": true,
- "jobStepModified": true,
- "action": "string",
- "message": "string",
- "requestIds": [
- 0
], - "expiryTime": "2019-08-24T14:15:22Z",
- "userId": 0,
- "result": "string",
- "results": [
- {
- "id": "string",
- "description": "string",
- "language": "string",
- "jobName": "string",
- "jobCount": "string",
- "btcSystem": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "server": "string",
- "host": "string",
- "btcwptotal": 0,
- "btcwpfree": 0,
- "btcwpclssa": 0,
- "name": "string",
- "operatingSystem": "string",
- "variant": "string",
- "parameter": "string",
- "low": "string",
- "high": "string",
- "kind": "string",
- "sign": "string",
- "option": "string",
- "device": "string",
- "deviceType": "string",
- "dataType": "string",
- "checkBoxRadio": "string",
- "deviceMessage": "string",
- "format": "string",
- "jobDetail": {
- "jobName": "string",
- "jobCount": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "recipient": "string",
- "stepCount": 0,
- "stepDetails": [
- {
- "stepNumber": 0,
- "stepType": "string",
- "action": "string",
- "stepInfo": {
- "command": "string",
- "parameters": "string",
- "operatingSystem": "string",
- "targetServer": "string",
- "logExternalOutputToJobLog": true,
- "logExternalErrorsToJobLog": true,
- "jobWaitingExternalTermination": true,
- "activateTrace": true,
- "language": "string",
- "printOutputDevice": "string",
- "printNumberCopies": 999,
- "printImmediately": true,
- "printFormat": "string",
- "printSpoolRequestName": "string",
- "printSpoolRequestTitle": "string",
- "printSpoolRequestAuth": "string",
- "printCoverSheetCoverPage": "string",
- "printCoverSheetSelectionCoverSheet": true,
- "printCoverSheetsRecipient": "string",
- "printCoverSheetsDepartment": "string",
- "printOutputOptionsDeleteImmediately": true,
- "printOutputOptionsNewSpoolRequest": true,
- "printOutputOptionSpoolRetentionPeriod": "string",
- "printSpoolParameter": 0
}
}
]
}
}
], - "errorMessage": "string"
}{- "id": 0,
- "status": "string",
- "type": "string",
- "sapMachine": "string",
- "user": "string",
- "externalUser": "string",
- "password": "string",
- "language": "string",
- "selection": "string",
- "jobName": "string",
- "jobCount": "string",
- "destination": "string",
- "systemId": "string",
- "criteria": [
- {
- "name": "string",
- "value": "string"
}
], - "jobDetail": {
- "jobName": "string",
- "jobCount": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "recipient": "string",
- "stepCount": 0,
- "stepDetails": [
- {
- "stepNumber": 0,
- "stepType": "string",
- "action": "string",
- "stepInfo": {
- "command": "string",
- "parameters": "string",
- "operatingSystem": "string",
- "targetServer": "string",
- "logExternalOutputToJobLog": true,
- "logExternalErrorsToJobLog": true,
- "jobWaitingExternalTermination": true,
- "activateTrace": true,
- "language": "string",
- "printOutputDevice": "string",
- "printNumberCopies": 999,
- "printImmediately": true,
- "printFormat": "string",
- "printSpoolRequestName": "string",
- "printSpoolRequestTitle": "string",
- "printSpoolRequestAuth": "string",
- "printCoverSheetCoverPage": "string",
- "printCoverSheetSelectionCoverSheet": true,
- "printCoverSheetsRecipient": "string",
- "printCoverSheetsDepartment": "string",
- "printOutputOptionsDeleteImmediately": true,
- "printOutputOptionsNewSpoolRequest": true,
- "printOutputOptionSpoolRetentionPeriod": "string",
- "printSpoolParameter": 0
}
}
]
}, - "abapName": "string",
- "variantName": "string",
- "parameters": [
- {
- "name": "string",
- "low": "string",
- "high": "string",
- "kind": "string",
- "option": "string",
- "sign": "string"
}
], - "isJobModify": true,
- "jobStepModified": true,
- "action": "string",
- "message": "string",
- "requestIds": [
- 0
], - "expiryTime": "2019-08-24T14:15:22Z",
- "userId": 0,
- "result": "string",
- "results": [
- {
- "id": "string",
- "description": "string",
- "language": "string",
- "jobName": "string",
- "jobCount": "string",
- "btcSystem": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "server": "string",
- "host": "string",
- "btcwptotal": 0,
- "btcwpfree": 0,
- "btcwpclssa": 0,
- "name": "string",
- "operatingSystem": "string",
- "variant": "string",
- "parameter": "string",
- "low": "string",
- "high": "string",
- "kind": "string",
- "sign": "string",
- "option": "string",
- "device": "string",
- "deviceType": "string",
- "dataType": "string",
- "checkBoxRadio": "string",
- "deviceMessage": "string",
- "format": "string",
- "jobDetail": {
- "jobName": "string",
- "jobCount": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "recipient": "string",
- "stepCount": 0,
- "stepDetails": [
- {
- "stepNumber": 0,
- "stepType": "string",
- "action": "string",
- "stepInfo": {
- "command": "string",
- "parameters": "string",
- "operatingSystem": "string",
- "targetServer": "string",
- "logExternalOutputToJobLog": true,
- "logExternalErrorsToJobLog": true,
- "jobWaitingExternalTermination": true,
- "activateTrace": true,
- "language": "string",
- "printOutputDevice": "string",
- "printNumberCopies": 999,
- "printImmediately": true,
- "printFormat": "string",
- "printSpoolRequestName": "string",
- "printSpoolRequestTitle": "string",
- "printSpoolRequestAuth": "string",
- "printCoverSheetCoverPage": "string",
- "printCoverSheetSelectionCoverSheet": true,
- "printCoverSheetsRecipient": "string",
- "printCoverSheetsDepartment": "string",
- "printOutputOptionsDeleteImmediately": true,
- "printOutputOptionsNewSpoolRequest": true,
- "printOutputOptionSpoolRetentionPeriod": "string",
- "printSpoolParameter": 0
}
}
]
}
}
], - "errorMessage": "string"
}Sample request (this creates a new access code):
GET /api/sapquery/id
| id required | integer <int32> Unique identifier for the request |
{- "id": 0,
- "status": "string",
- "type": "string",
- "sapMachine": "string",
- "user": "string",
- "externalUser": "string",
- "password": "string",
- "language": "string",
- "selection": "string",
- "jobName": "string",
- "jobCount": "string",
- "destination": "string",
- "systemId": "string",
- "criteria": [
- {
- "name": "string",
- "value": "string"
}
], - "jobDetail": {
- "jobName": "string",
- "jobCount": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "recipient": "string",
- "stepCount": 0,
- "stepDetails": [
- {
- "stepNumber": 0,
- "stepType": "string",
- "action": "string",
- "stepInfo": {
- "command": "string",
- "parameters": "string",
- "operatingSystem": "string",
- "targetServer": "string",
- "logExternalOutputToJobLog": true,
- "logExternalErrorsToJobLog": true,
- "jobWaitingExternalTermination": true,
- "activateTrace": true,
- "language": "string",
- "printOutputDevice": "string",
- "printNumberCopies": 999,
- "printImmediately": true,
- "printFormat": "string",
- "printSpoolRequestName": "string",
- "printSpoolRequestTitle": "string",
- "printSpoolRequestAuth": "string",
- "printCoverSheetCoverPage": "string",
- "printCoverSheetSelectionCoverSheet": true,
- "printCoverSheetsRecipient": "string",
- "printCoverSheetsDepartment": "string",
- "printOutputOptionsDeleteImmediately": true,
- "printOutputOptionsNewSpoolRequest": true,
- "printOutputOptionSpoolRetentionPeriod": "string",
- "printSpoolParameter": 0
}
}
]
}, - "abapName": "string",
- "variantName": "string",
- "parameters": [
- {
- "name": "string",
- "low": "string",
- "high": "string",
- "kind": "string",
- "option": "string",
- "sign": "string"
}
], - "isJobModify": true,
- "jobStepModified": true,
- "action": "string",
- "message": "string",
- "requestIds": [
- 0
], - "expiryTime": "2019-08-24T14:15:22Z",
- "userId": 0,
- "result": "string",
- "results": [
- {
- "id": "string",
- "description": "string",
- "language": "string",
- "jobName": "string",
- "jobCount": "string",
- "btcSystem": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "server": "string",
- "host": "string",
- "btcwptotal": 0,
- "btcwpfree": 0,
- "btcwpclssa": 0,
- "name": "string",
- "operatingSystem": "string",
- "variant": "string",
- "parameter": "string",
- "low": "string",
- "high": "string",
- "kind": "string",
- "sign": "string",
- "option": "string",
- "device": "string",
- "deviceType": "string",
- "dataType": "string",
- "checkBoxRadio": "string",
- "deviceMessage": "string",
- "format": "string",
- "jobDetail": {
- "jobName": "string",
- "jobCount": "string",
- "jobStatus": "string",
- "jobClass": "string",
- "recipient": "string",
- "stepCount": 0,
- "stepDetails": [
- {
- "stepNumber": 0,
- "stepType": "string",
- "action": "string",
- "stepInfo": {
- "command": "string",
- "parameters": "string",
- "operatingSystem": "string",
- "targetServer": "string",
- "logExternalOutputToJobLog": true,
- "logExternalErrorsToJobLog": true,
- "jobWaitingExternalTermination": true,
- "activateTrace": true,
- "language": "string",
- "printOutputDevice": "string",
- "printNumberCopies": 999,
- "printImmediately": true,
- "printFormat": "string",
- "printSpoolRequestName": "string",
- "printSpoolRequestTitle": "string",
- "printSpoolRequestAuth": "string",
- "printCoverSheetCoverPage": "string",
- "printCoverSheetSelectionCoverSheet": true,
- "printCoverSheetsRecipient": "string",
- "printCoverSheetsDepartment": "string",
- "printOutputOptionsDeleteImmediately": true,
- "printOutputOptionsNewSpoolRequest": true,
- "printOutputOptionSpoolRetentionPeriod": "string",
- "printSpoolParameter": 0
}
}
]
}
}
], - "errorMessage": "string"
}| id | integer <int32> |
| action | string or null |
| result | string or null |
| message | string or null |
| expiryTime | string <date-time> |
| requestIds | Array of integers or null <int64> |
| userId | integer <int32> |
| invalidStates | Array of strings or null |
| states | Array of strings or null |
| reason | string or null |
Array of objects or null (ScheduleActionItem) |
{- "id": 0,
- "action": "string",
- "result": "string",
- "message": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "requestIds": [
- 0
], - "userId": 0,
- "invalidStates": [
- "string"
], - "states": [
- "string"
], - "reason": "string",
- "scheduleActionItems": [
- {
- "updated": 0,
- "id": "string",
- "instanceProperties": [
- {
- "name": "string",
- "value": "string"
}
], - "result": "string",
- "message": "string",
- "jobs": [
- {
- "applyExceptions": true,
- "id": "string",
- "frequency": "string",
- "rebuildOnRestartIfContainer": true,
- "instanceProperties": [
- {
- "name": "string",
- "value": "string"
}
], - "result": "string",
- "message": "string",
- "uid": 0,
- "requestId": 0
}
], - "status": {
- "id": 0,
- "description": "string",
- "category": "string",
- "containsFailedJobs": true
}, - "requestId": 0
}
]
}| action | string or null |
| invalidStates | Array of strings or null |
| states | Array of strings or null |
| requestIds | Array of integers or null <int64> |
| expiryTime | string <date-time> |
| userId | integer <int32> |
| id | integer <int32> |
| scheduleDates | Array of strings or null |
Array of objects or null (ScheduleDateJobItem) | |
| reason | string or null |
| result | string or null |
| message | string or null |
| updated | integer or null <int32> |
{- "action": "string",
- "invalidStates": [
- "string"
], - "states": [
- "string"
], - "requestIds": [
- 0
], - "expiryTime": "2019-08-24T14:15:22Z",
- "userId": 0,
- "id": 0,
- "scheduleDates": [
- "string"
], - "scheduleDateActionItems": [
- {
- "id": "string",
- "rebuildOnRestartIfContainer": true,
- "subScheduleId": "string"
}
], - "reason": "string",
- "result": "string",
- "message": "string",
- "updated": 0
}Array of objects or null (ScheduleBuildRequest) | |
Array of objects or null (ScheduleBuildActionSchedule) | |
| action | string or null |
| id | integer <int32> |
| result | string or null |
| message | string or null |
| requestIds | Array of integers or null <int64> |
| expiryTime | string <date-time> |
| userId | integer <int32> |
| dates | Array of strings or null |
| logFile | string or null |
| overwrite | boolean |
| namedInstance | string or null |
| machineName | string or null |
| hold | boolean |
{- "requests": [
- {
- "name": "string",
- "date": "2019-08-24T14:15:22Z",
- "id": 0,
- "scheduleId": 0,
- "result": "string",
- "message": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "logFileName": "string"
}
], - "schedules": [
- {
- "id": 0,
- "name": "string"
}
], - "action": "string",
- "id": 0,
- "result": "string",
- "message": "string",
- "requestIds": [
- 0
], - "expiryTime": "2019-08-24T14:15:22Z",
- "userId": 0,
- "dates": [
- "string"
], - "logFile": "string",
- "overwrite": true,
- "namedInstance": "string",
- "machineName": "string",
- "hold": true
}| id required | string [ 1 .. 50 ] characters |
| entityType | integer <int32> (ScheduleCheckRequestType) Enum: 0 1 2 |
| checkType | string (ScheduleCheckType) Enum: "Unknown" "Slow" "Normal" "Fast" |
{- "id": "string",
- "entityType": 0,
- "checkType": "Unknown"
}| masterJobIds required | Array of strings non-empty |
| versionSelectionType required | string non-empty |
| targetScriptVersionId | integer <int32> |
{- "masterJobIds": [
- "string"
], - "versionSelectionType": "string",
- "targetScriptVersionId": 0
}| name required | string [ 1 .. 128 ] characters |
required | object (AddScriptType) |
required | object (AddLsamType) |
| command required | string non-empty |
{- "name": "string",
- "scriptType": {
- "id": 0
}, - "lsamType": {
- "id": 0
}, - "command": "string"
}| ScriptName | string |
| ScriptTypeName | string |
| ScriptIds | Array of integers <int32> [ items <int32 > ] |
| IncludeCrossReferences | boolean |
| IncludeVersions | boolean |
| OpConPlatformId | integer <int32> |
| Limit | integer <int32> |
| Offset | integer <int32> |
| SortValue | string (ScriptCriteriaSortColumn) Enum: "Unknown" "TypeName" "ScriptName" "Description" |
| SortDescending | boolean |
| name required | string [ 1 .. 255 ] characters ^[a-zA-Z0-9_-]*$ |
required | Array of objects (AddInitialScriptVersion) = 1 items |
required | object (AddScriptType) |
| id | integer <int32> [ 0 .. 0 ] |
| description | string or null <= 4000 characters |
required | Array of objects (AddScriptRoleAssignment) |
{- "name": "string",
- "versions": [
- {
- "id": 0,
- "comment": "string",
- "content": "string"
}
], - "type": {
- "id": 0
}, - "id": 0,
- "description": "string",
- "roles": [
- {
- "id": 0
}
]
}| scriptId required | integer <int32> |
| name required | string [ 1 .. 255 ] characters ^[a-zA-Z0-9_-]*$ |
required | object (UpdateScriptType) |
| description | string or null <= 4000 characters |
{- "name": "string",
- "type": {
- "id": 0
}, - "description": "string"
}| name required | string [ 1 .. 128 ] characters |
| description | string or null <= 4000 characters |
| fileExtension | string or null <= 12 characters ^[a-zA-Z0-9]*$ |
{- "name": "string",
- "description": "string",
- "fileExtension": "string"
}| scriptTypeId required | integer <int32> |
| name required | string [ 1 .. 128 ] characters |
| description | string or null <= 4000 characters |
| fileExtension | string or null <= 12 characters ^[a-zA-Z0-9]*$ |
{- "name": "string",
- "description": "string",
- "fileExtension": "string"
}| id | integer <int32> [ 0 .. 0 ] |
| comment | string or null <= 4000 characters |
| content required | string [ 1 .. 921600 ] characters ^[^\u001f]*$ |
| scriptId required | integer <int32> [ 1 .. 2147483647 ] |
{- "id": 0,
- "comment": "string",
- "content": "string",
- "scriptId": 1
}| alternateOddAndEvenWeeks | boolean or null |
| enableWindowsAuthentication | boolean or null |
| numberOfDaysToKeepServiceRequestExecutions | integer or null <int32> |
object (HtmlDocumentation) | |
object (PasswordPolicy) | |
object (VisionSettings) | |
| solutionManagerSettings | string or null |
| ticketingSystemName | string or null |
| loginSecureMessage | string or null |
Array of objects or null (ServerSetting) |
{- "alternateOddAndEvenWeeks": true,
- "enableWindowsAuthentication": true,
- "numberOfDaysToKeepServiceRequestExecutions": 0,
- "htmlDocumentation": {
- "rootDocUrl": "string"
}, - "passwordPolicy": {
- "minimumCharacters": 0,
- "numericRequired": true,
- "alphaRequired": true,
- "specialCharacterRequired": true,
- "repeatedCharacterOccurrencesAllowed": 0,
- "minimumNumberOfLowerCaseCharacters": 0,
- "minimumNumberOfUpperCaseCharacters": 0,
- "minimumNumberOfDaysToChangePassword": 0,
- "daysValid": 0,
- "daysBeforeExpirationToWarn": 0,
- "numberOfPasswordsToRetain": 0,
- "attemptsBeforeAccountLock": 0
}, - "visionSettings": {
- "visionPastProcessingDays": 0,
- "visionFutureProcessingDays": 0,
- "visionHistoryDaysToKeep": 0
}, - "solutionManagerSettings": "string",
- "ticketingSystemName": "string",
- "loginSecureMessage": "string",
- "settings": [
- {
- "configKey": "string",
- "configValue": "string"
}
]
}| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeServiceRequests | boolean |
| Name | string |
| Color | string |
| ServiceRequestName | string |
| Ids | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
| id | integer <int32> |
| name | string or null |
| color | string or null |
Array of objects or null (ServiceRequest) |
{- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": { },
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}
]
}| id required | integer <int32> |
| id | integer <int32> |
| name | string or null |
| color | string or null |
Array of objects or null (ServiceRequest) |
{- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": { },
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}
]
}| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeServiceRequests | boolean |
| IncludeOpconResponses | boolean |
| IncludeUsers | boolean |
| ServiceRequestName | string |
| LoginName | string |
| Ids | string |
| ServiceRequestIds | string |
| ExecutionStatuses | string |
| LastUpdateLessThan | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| GroupBy | string |
| SortBy | string |
| id | integer <int32> |
| executionStatus | string or null |
| details | string or null |
| submitAsOcadm | boolean or null |
| requestTs | string or null <date-time> |
| requestTimeStamp | string or null |
| lastUpdateTs | string or null <date-time> |
| lastUpdateTimeStamp | string or null |
object (User) | |
object (ServiceRequest) | |
Array of objects or null (OpConRequest) | |
Array of objects or null (OpConResponse) | |
Array of objects or null (SelfServiceVariable) | |
| completedCount | integer or null <int32> |
| totalCount | integer or null <int32> |
Array of objects or null (EventExecution) | |
| trackEvent | boolean |
{- "id": 0,
- "executionStatus": "string",
- "details": "string",
- "submitAsOcadm": true,
- "requestTs": "2019-08-24T14:15:22Z",
- "requestTimeStamp": "string",
- "lastUpdateTs": "2019-08-24T14:15:22Z",
- "lastUpdateTimeStamp": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "serviceRequest": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": {
- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- { }
]
}, - "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}, - "opconRequests": [
- {
- "id": 0,
- "requestTimeStamp": "2019-08-24T14:15:22Z",
- "sourceDescription": "string",
- "sourceName": "string",
- "handler": "string",
- "type": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "details": "string",
- "processed": 0,
- "dsn": "string"
}
], - "opconResponses": [
- {
- "id": 0,
- "requestTimeStamp": "2019-08-24T14:15:22Z",
- "sourceDescription": "string",
- "sourceName": "string",
- "type": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "details": "string"
}
], - "variables": [
- {
- "type": "string",
- "name": "string",
- "text": {
- "value": "string",
- "modifiedValue": "string"
}, - "choice": {
- "value": "string"
}, - "masterJob": {
- "value": "string"
}, - "masterSchedule": {
- "value": "string"
}, - "number": {
- "value": 0
}, - "date": {
- "value": "string",
- "formattedDateValue": "string"
}, - "textCollection": {
- "value": [
- "string"
], - "modifiedValue": "string"
}
}
], - "completedCount": 0,
- "totalCount": 0,
- "eventExecutions": [
- {
- "status": "string",
- "listOfStatus": [
- "string"
], - "message": "string",
- "jobs": [
- {
- "id": "string",
- "status": "string",
- "message": "string"
}
]
}
], - "trackEvent": true
}| id required | integer <int32> |
| id | integer <int32> |
| executionStatus | string or null |
| details | string or null |
| submitAsOcadm | boolean or null |
| requestTs | string or null <date-time> |
| requestTimeStamp | string or null |
| lastUpdateTs | string or null <date-time> |
| lastUpdateTimeStamp | string or null |
object (User) | |
object (ServiceRequest) | |
Array of objects or null (OpConRequest) | |
Array of objects or null (OpConResponse) | |
Array of objects or null (SelfServiceVariable) | |
| completedCount | integer or null <int32> |
| totalCount | integer or null <int32> |
Array of objects or null (EventExecution) | |
| trackEvent | boolean |
{- "id": 0,
- "executionStatus": "string",
- "details": "string",
- "submitAsOcadm": true,
- "requestTs": "2019-08-24T14:15:22Z",
- "requestTimeStamp": "string",
- "lastUpdateTs": "2019-08-24T14:15:22Z",
- "lastUpdateTimeStamp": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "serviceRequest": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": {
- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- { }
]
}, - "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}, - "opconRequests": [
- {
- "id": 0,
- "requestTimeStamp": "2019-08-24T14:15:22Z",
- "sourceDescription": "string",
- "sourceName": "string",
- "handler": "string",
- "type": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "details": "string",
- "processed": 0,
- "dsn": "string"
}
], - "opconResponses": [
- {
- "id": 0,
- "requestTimeStamp": "2019-08-24T14:15:22Z",
- "sourceDescription": "string",
- "sourceName": "string",
- "type": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "details": "string"
}
], - "variables": [
- {
- "type": "string",
- "name": "string",
- "text": {
- "value": "string",
- "modifiedValue": "string"
}, - "choice": {
- "value": "string"
}, - "masterJob": {
- "value": "string"
}, - "masterSchedule": {
- "value": "string"
}, - "number": {
- "value": 0
}, - "date": {
- "value": "string",
- "formattedDateValue": "string"
}, - "textCollection": {
- "value": [
- "string"
], - "modifiedValue": "string"
}
}
], - "completedCount": 0,
- "totalCount": 0,
- "eventExecutions": [
- {
- "status": "string",
- "listOfStatus": [
- "string"
], - "message": "string",
- "jobs": [
- {
- "id": "string",
- "status": "string",
- "message": "string"
}
]
}
], - "trackEvent": true
}| field required | string |
| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeServiceRequests | boolean |
| IncludeOpconResponses | boolean |
| IncludeUsers | boolean |
| ServiceRequestName | string |
| LoginName | string |
| Ids | string |
| ServiceRequestIds | string |
| ExecutionStatuses | string |
| LastUpdateLessThan | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| GroupBy | string |
| SortBy | string |
| field required | string |
| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeServiceRequests | boolean |
| IncludeOpconResponses | boolean |
| IncludeUsers | boolean |
| ServiceRequestName | string |
| LoginName | string |
| Ids | string |
| ServiceRequestIds | string |
| ExecutionStatuses | string |
| LastUpdateLessThan | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| GroupBy | string |
| SortBy | string |
| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeServiceRequests | boolean |
| IncludeOpconResponses | boolean |
| IncludeUsers | boolean |
| ServiceRequestName | string |
| LoginName | string |
| Ids | string |
| ServiceRequestIds | string |
| ExecutionStatuses | string |
| LastUpdateLessThan | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| GroupBy | string |
| SortBy | string |
| id | integer <int32> |
| executionStatus | string or null |
| details | string or null |
| submitAsOcadm | boolean or null |
| requestTs | string or null <date-time> |
| requestTimeStamp | string or null |
| lastUpdateTs | string or null <date-time> |
| lastUpdateTimeStamp | string or null |
object (User) | |
object (ServiceRequest) | |
Array of objects or null (OpConRequest) | |
Array of objects or null (OpConResponse) | |
Array of objects or null (SelfServiceVariable) | |
| completedCount | integer or null <int32> |
| totalCount | integer or null <int32> |
Array of objects or null (EventExecution) | |
| trackEvent | boolean |
{- "id": 0,
- "executionStatus": "string",
- "details": "string",
- "submitAsOcadm": true,
- "requestTs": "2019-08-24T14:15:22Z",
- "requestTimeStamp": "string",
- "lastUpdateTs": "2019-08-24T14:15:22Z",
- "lastUpdateTimeStamp": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "serviceRequest": {
- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": {
- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- { }
]
}, - "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}, - "opconRequests": [
- {
- "id": 0,
- "requestTimeStamp": "2019-08-24T14:15:22Z",
- "sourceDescription": "string",
- "sourceName": "string",
- "handler": "string",
- "type": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "details": "string",
- "processed": 0,
- "dsn": "string"
}
], - "opconResponses": [
- {
- "id": 0,
- "requestTimeStamp": "2019-08-24T14:15:22Z",
- "sourceDescription": "string",
- "sourceName": "string",
- "type": "string",
- "expiryTime": "2019-08-24T14:15:22Z",
- "details": "string"
}
], - "variables": [
- {
- "type": "string",
- "name": "string",
- "text": {
- "value": "string",
- "modifiedValue": "string"
}, - "choice": {
- "value": "string"
}, - "masterJob": {
- "value": "string"
}, - "masterSchedule": {
- "value": "string"
}, - "number": {
- "value": 0
}, - "date": {
- "value": "string",
- "formattedDateValue": "string"
}, - "textCollection": {
- "value": [
- "string"
], - "modifiedValue": "string"
}
}
], - "completedCount": 0,
- "totalCount": 0,
- "eventExecutions": [
- {
- "status": "string",
- "listOfStatus": [
- "string"
], - "message": "string",
- "jobs": [
- {
- "id": "string",
- "status": "string",
- "message": "string"
}
]
}
], - "trackEvent": true
}| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeRoles | boolean |
| EvaluateRules | boolean |
| Name | string |
| CategoryName | string |
| RoleName | string |
| Ids | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
| id | integer <int32> |
| name | string or null |
| documentation | string or null |
| html | string or null |
object (SelfServiceRequest) | |
| details | string or null |
object (ServiceRequestControl) | |
| disableRule | string or null |
object (ServiceRequestControl) | |
| hideRule | string or null |
object (ServiceRequestCategory) | |
Array of objects or null (Role) |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": {
- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- { }
]
}, - "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}| id required | integer <int32> |
| id | integer <int32> |
| name | string or null |
| documentation | string or null |
| html | string or null |
object (SelfServiceRequest) | |
| details | string or null |
object (ServiceRequestControl) | |
| disableRule | string or null |
object (ServiceRequestControl) | |
| hideRule | string or null |
object (ServiceRequestCategory) | |
Array of objects or null (Role) |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": {
- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- { }
]
}, - "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}| id required | integer <int32> |
| id | integer <int32> |
| name | string or null |
| documentation | string or null |
| html | string or null |
object (SelfServiceRequest) | |
| details | string or null |
object (ServiceRequestControl) | |
| disableRule | string or null |
object (ServiceRequestControl) | |
| hideRule | string or null |
object (ServiceRequestCategory) | |
Array of objects or null (Role) |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": {
- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- { }
]
}, - "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeRoles | boolean |
| EvaluateRules | boolean |
| Name | string |
| CategoryName | string |
| RoleName | string |
| Ids | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
| id | integer <int32> |
| name | string or null |
| documentation | string or null |
| html | string or null |
object (SelfServiceRequest) | |
| details | string or null |
object (ServiceRequestControl) | |
| disableRule | string or null |
object (ServiceRequestControl) | |
| hideRule | string or null |
object (ServiceRequestCategory) | |
Array of objects or null (Role) |
{- "id": 0,
- "name": "string",
- "documentation": "string",
- "html": "string",
- "request": {
- "confirmed": true,
- "sendAsOcadm": true,
- "events": [
- "string"
], - "trackEventExecutions": true,
- "variables": [
- {
- "variableTypes": "string",
- "label": "string",
- "name": "string",
- "required": true,
- "text": {
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "stripCharacters": "string",
- "paddingDirection": "string",
- "paddingCharacter": "string",
- "paddingLength": 0,
- "password": true,
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "number": {
- "minimum": 0,
- "maximum": 0
}, - "date": {
- "beforeToday": true,
- "afterToday": true,
- "beforeDate": "string",
- "afterDate": "string",
- "format": "string"
}, - "textCollection": {
- "disallowDuplicate": true,
- "delimiter": "string",
- "minCharacters": 0,
- "maxCharacters": 0,
- "invalidCharacters": "string",
- "regExpression": "string",
- "regExpressionErrorMsg": "string"
}, - "masterJob": {
- "scheduleName": "string"
}, - "choice": {
- "items": [
- {
- "caption": "string",
- "value": "string"
}
]
}
}
], - "skipValidationForChoiceItems": true,
- "matchingVariables": true,
- "jsFunctions": { }
}, - "details": "string",
- "disabled": {
- "state": "string",
- "errorMessage": "string"
}, - "disableRule": "string",
- "hidden": {
- "state": "string",
- "errorMessage": "string"
}, - "hideRule": "string",
- "serviceRequestCategory": {
- "id": 0,
- "name": "string",
- "color": "string",
- "serviceRequests": [
- { }
]
}, - "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
]
}| id | integer <int32> |
| roleId | integer or null <int32> |
| userId | integer or null <int32> |
| name | string or null |
| value | string or null |
| userCanWrite | boolean or null |
| isPublic | boolean or null |
{- "id": 0,
- "roleId": 0,
- "userId": 0,
- "name": "string",
- "value": "string",
- "userCanWrite": true,
- "isPublic": true
}| id required | integer <int32> |
| id | integer <int32> |
| roleId | integer or null <int32> |
| userId | integer or null <int32> |
| name | string or null |
| value | string or null |
| userCanWrite | boolean or null |
| isPublic | boolean or null |
{- "id": 0,
- "roleId": 0,
- "userId": 0,
- "name": "string",
- "value": "string",
- "userCanWrite": true,
- "isPublic": true
}Sample request (this updates the threshold having id '1'):
PUT /api/thresholds/1
{
"id": 1,
"name": "T1",
"description": "Threshold 1",
"value": 10
}
| id required | integer <int32> |
| id | integer or null <int32> Threshold id |
| name | string or null Threshold name |
| description | string or null Threshold description |
| value | integer or null <int32> Threshold value |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that update the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that update the threshold |
{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}Sample request:
GET /api/thresholds/1
| id required | integer <int32> |
{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}Sample request:
POST /api/thresholds
{
"name": "T1",
"description": "Threshold 1",
"value": 10
}
| id | integer or null <int32> Threshold id |
| name | string or null Threshold name |
| description | string or null Threshold description |
| value | integer or null <int32> Threshold value |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceDailyJob) List of daily jobs that update the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that depend on the threshold | |
Array of objects or null (ThresholdResourceMasterJob) List of master jobs that update the threshold |
{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}{- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}Sample request:
GET /api/thresholds?name=T1
| IncludeDependentDailyJobs | boolean Flag to include dependent daily jobs |
| IncludeUpdatedByDailyJobs | boolean Flag to include thresholds updated by daily jobs |
| IncludeDependentMasterJobs | boolean Flag to include dependent master jobs |
| IncludeUpdatedByMasterJobs | boolean Flag to include thresholds updated by master jobs |
| Offset | integer <int32> Retrieves records beginning at this record number |
| Limit | integer <int32> Limits the results being fetched. 0 retrieves just a count |
| Name | string Threshold name |
| Value | integer <int32> Threshold value |
| Ids | string Comma-separated list of threshold ids |
| Description | string Threshold description |
| SortBy | string Options to sort by |
| SortOrders | Array of strings Sort order (id, name, description) |
[- {
- "id": 0,
- "name": "string",
- "description": "string",
- "value": 0,
- "dependentDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "updatedByDailyJobs": [
- {
- "id": "string",
- "uniqueJobId": "string",
- "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}
}
], - "dependentMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
], - "updatedByMasterJobs": [
- {
- "id": "string",
- "status": {
- "id": 0,
- "status": "string"
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}, - "job": {
- "uniqueJobId": "string",
- "name": "string",
- "frequency": {
- "scheduleId": 0,
- "jobName": "string",
- "frequencyCode": 0,
- "calendarId": 0,
- "aobn": 0,
- "frequencyPriority": 0,
- "name": "string",
- "finishOkBehavior": {
- "type": "string",
- "actionOnOverlap": "string",
- "instanceTimes": [
- "string"
], - "numberOfRuns": 0,
- "latestRunTimeOffset": 0,
- "minutesFromEndToStart": 0,
- "minutesFromStartToStart": 0
}, - "startTimeEstimation": {
- "estimationSource": "string",
- "estimatedRunTime": 0,
- "predictedStartTimeOffset": 0
}, - "jobExecution": {
- "samPriority": 0,
- "maxRunTime": 0
}, - "retryBehavior": {
- "retryOnFail": true,
- "minutesBetweenAttempts": 0,
- "maximumAttempts": 0
}, - "jobTimesEstimation": {
- "parentScheduleStartTime": "string",
- "startOffsetTimeFormat": "string",
- "startOffset": 0,
- "latestStartOffset": 0,
- "latestStartOffsetTimeFormat": "string",
- "lateToFinishOffset": 0,
- "lateToStartOffset": 0
}, - "overlapAction": "string",
- "maximumAttempts": 0,
- "minutesBetweenAttempts": 0,
- "startTimeEstimationSource": "string",
- "predictedStartTimeOffset": "string",
- "recurringInstanceTimes": [
- "string"
], - "lateToFinishOffset": "string",
- "lateToStartOffset": "string",
- "minutesFromStartToStart": 0,
- "minutesFromEndToStart": 0,
- "latestRunTime": "string",
- "numberOfRuns": 0,
- "parentDoubleScheduleTime": 0,
- "parentDoubleScheduleDate": 0,
- "startOffset": "string",
- "startOffsetTimeFormat": "string",
- "latestStartOffset": "string",
- "latestStartOffsetTimeFormat": "string",
- "estimatedRunTime": 0,
- "samPriority": 0,
- "maxRunTime": 0,
- "startStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}
}, - "schedule": {
- "id": 0,
- "name": "string",
- "instance": 0,
- "date": "string"
}
}, - "dependency": {
- "operator": "string",
- "value": 0,
- "requires": 0,
- "requiresAll": true
}, - "update": {
- "status": {
- "id": 0,
- "status": "string"
}, - "value": 0
}, - "thresholdId": 0,
- "scheduleId": 0,
- "jobName": "string",
- "statusId": 0
}
]
}
]{- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}| id | string or null The token |
object (User) | |
object (TokenType) | |
| validFrom | string or null <date-time> Valid start date time of the token |
| validUntil | string or null <date-time> Token expiration date time |
| passwordExpired | boolean |
{- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}{- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}{- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}| Limit | integer <int32> |
| Offset | integer <int32> |
| IncludeDetails | boolean |
| LoginName | string |
| UserName | string |
| RoleName | string |
| SelfServiceUser | boolean |
| Ids | string |
| SortOrder.SortBy | string |
| SortOrder.IdColumns | Array of strings |
| SortOrder.ValidSortOrders | Array of strings |
| SortOrder.ColumnList | Array of strings |
| SortOrder.SortTypeList | Array of strings |
| SortBy | string |
| id | integer <int32> |
| loginName | string or null |
| name | string or null |
| password | string or null |
| externalPassword | string or null |
| externalHashedToken | string or null |
| details | string or null |
| moreDetails | string or null |
Array of objects or null (Role) | |
| language | string or null |
| isExternalTokenDisabled | boolean or null |
| isDisabled | boolean or null |
| forcePasswordChange | boolean or null |
string or null | |
| numberOfFailedPasswordAttempts | integer or null <int32> |
| passwordNeverExpires | boolean or null |
| lastPasswordChangeDate | string or null |
| isSelfServiceUser | boolean or null |
| historicalPasswords | Array of strings or null |
| solutionManagerSettings | string or null |
{- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}| id required | integer <int32> |
| id | integer <int32> |
| loginName | string or null |
| name | string or null |
| password | string or null |
| externalPassword | string or null |
| externalHashedToken | string or null |
| details | string or null |
| moreDetails | string or null |
Array of objects or null (Role) | |
| language | string or null |
| isExternalTokenDisabled | boolean or null |
| isDisabled | boolean or null |
| forcePasswordChange | boolean or null |
string or null | |
| numberOfFailedPasswordAttempts | integer or null <int32> |
| passwordNeverExpires | boolean or null |
| lastPasswordChangeDate | string or null |
| isSelfServiceUser | boolean or null |
| historicalPasswords | Array of strings or null |
| solutionManagerSettings | string or null |
{- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}| Ids | string A comma-separated list of action ids. |
| Name | string The action name. |
[- {
- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": 0,
- "detail": "string",
- "actionId": 0
}
]
}
]| id | integer <int32> The action id. |
| name | string or null The action name. |
Array of objects or null (VisionActionDetail) A list of action details. |
{- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": 0,
- "detail": "string",
- "actionId": 0
}
]
}{- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": 0,
- "detail": "string",
- "actionId": 0
}
]
}| id required | integer <int32> |
| id | integer <int32> The action id. |
| name | string or null The action name. |
Array of objects or null (VisionActionDetail) A list of action details. |
{- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": 0,
- "detail": "string",
- "actionId": 0
}
]
}{- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": 0,
- "detail": "string",
- "actionId": 0
}
]
}| Ids | string |
| From | string The start date represented in the % QoS Failure(s) and % SLA Failure(s) frames. |
| To | string The end date represented in the % QoS Failure(s) and % SLA Failure(s) frames. |
| CardIds | string The card ids |
| ExcludeQos | boolean Flag to exclude QoS (Quality of Service) |
| ExcludeSla | boolean Flag to exclude SLA (Service Level Agreement) |
Array of objects (CardTrackId) List of Vision card track ids |
[- {
- "id": 0,
- "visionHistoryId": 0,
- "cardId": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "sourceCard": {
- "id": 0,
- "visionHistoryId": 0,
- "cardId": 0
}, - "visionDate": "string",
- "visionDateInternal": "2019-08-24T14:15:22Z",
- "cardPath": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "tag": "string",
- "offset": 0,
- "startTime": "string",
- "startTimeInternal": "2019-08-24T14:15:22Z",
- "endTime": "string",
- "endTimeInternal": "2019-08-24T14:15:22Z",
- "duration": 0,
- "failed": true,
- "status": [
- {
- "condition": {
- "id": 0,
- "name": "string"
}, - "sla": {
- "requirement": {
- "id": 0,
- "name": "string"
}, - "dateTime": "string"
}
}
]
}
]| id required | integer <int32> |
| cardId required | integer <int32> |
{- "id": 0,
- "version": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "name": "string",
- "description": "string",
- "tagPattern": "string",
- "offset": 0,
- "qosTolerableThreshold": 0,
- "qosCriticalThreshold": 0,
- "slaTolerableThreshold": 0,
- "slaCriticalThreshold": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "parentMasterVisionCard": { },
- "parentId": 0,
- "associatedFrequencies": [
- {
- "id": 0,
- "visionFrequency": {
- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}, - "triggerConditions": [
- {
- "id": 0,
- "statusId": 0,
- "condition": {
- "id": 0,
- "name": "string"
}, - "runnables": [
- {
- "id": 0,
- "actionId": 0,
- "name": "string",
- "detailId": 0,
- "detail": "string",
- "action": {
- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": null,
- "detail": null,
- "actionId": null
}
]
}, - "repeatAfterMinutes": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}, - "tokenType": {
- "id": null,
- "type": null
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
]
}, - "lastRepeated": "2019-08-24T14:15:22Z"
}
]
}
], - "slas": [
- {
- "slaId": 0,
- "requirement": {
- "id": 0,
- "name": "string"
}, - "time": "string",
- "internalTime": "2019-08-24T14:15:22Z",
- "masterVisionCardFrequencyId": 0,
- "offset": 0
}
], - "masterVisionCardFrequencyId": 0
}
], - "roleId": 0,
- "roleName": "string",
- "associatedRoles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "children": [
- { }
]
}| id required | integer <int32> The workspace id. Must be 1. |
| cardId required | integer <int32> The card id to update. |
| id | integer <int32> The card id. |
| version | integer <int32> The card version. |
| trackId | string or null The track id in GUID format. |
| trackIdInternal | string or null <uuid> |
| name | string or null The card name. |
| description | string or null The card description. |
| tagPattern | string or null The tag pattern. |
| offset | integer <int32> The offset in days, +/- 5 days, of the schedule date on which Vision has to look for jobs. |
| qosTolerableThreshold | integer or null <int32> Defines the value to indicate the QoS tolerable threshold (0 - 100). |
| qosCriticalThreshold | integer or null <int32> Defines the value to indicate the QoS critical threshold (0 - 100). |
| slaTolerableThreshold | integer or null <int32> Defines the value to indicate the SLA tolerable threshold (0 - 100). |
| slaCriticalThreshold | integer or null <int32> Defines the value to indicate the SLA critical threshold (0 - 100). |
| remoteInstanceId | integer or null <int32> |
| remoteInstanceName | string or null |
object (RemoteInstance) | |
| parentMasterVisionCard | object (MasterVisionCard) Recursive |
| parentId | integer <int32> |
Array of objects or null (MonitoredVisionFrequency) A list of frequencies associated with the card. | |
| roleId | integer or null <int32> |
| roleName | string or null |
Array of objects or null (Role) A list of roles assigned to the card. | |
| children | Array of objects or null (MasterVisionCard) A list of child cards assigned to the card. |
{- "id": 0,
- "version": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "name": "string",
- "description": "string",
- "tagPattern": "string",
- "offset": 0,
- "qosTolerableThreshold": 0,
- "qosCriticalThreshold": 0,
- "slaTolerableThreshold": 0,
- "slaCriticalThreshold": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "parentMasterVisionCard": { },
- "parentId": 0,
- "associatedFrequencies": [
- {
- "id": 0,
- "visionFrequency": {
- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}, - "triggerConditions": [
- {
- "id": 0,
- "statusId": 0,
- "condition": {
- "id": 0,
- "name": "string"
}, - "runnables": [
- {
- "id": 0,
- "actionId": 0,
- "name": "string",
- "detailId": 0,
- "detail": "string",
- "action": {
- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": null,
- "detail": null,
- "actionId": null
}
]
}, - "repeatAfterMinutes": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}, - "tokenType": {
- "id": null,
- "type": null
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
]
}, - "lastRepeated": "2019-08-24T14:15:22Z"
}
]
}
], - "slas": [
- {
- "slaId": 0,
- "requirement": {
- "id": 0,
- "name": "string"
}, - "time": "string",
- "internalTime": "2019-08-24T14:15:22Z",
- "masterVisionCardFrequencyId": 0,
- "offset": 0
}
], - "masterVisionCardFrequencyId": 0
}
], - "roleId": 0,
- "roleName": "string",
- "associatedRoles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "children": [
- { }
]
}{- "id": 0,
- "version": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "name": "string",
- "description": "string",
- "tagPattern": "string",
- "offset": 0,
- "qosTolerableThreshold": 0,
- "qosCriticalThreshold": 0,
- "slaTolerableThreshold": 0,
- "slaCriticalThreshold": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "parentMasterVisionCard": { },
- "parentId": 0,
- "associatedFrequencies": [
- {
- "id": 0,
- "visionFrequency": {
- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}, - "triggerConditions": [
- {
- "id": 0,
- "statusId": 0,
- "condition": {
- "id": 0,
- "name": "string"
}, - "runnables": [
- {
- "id": 0,
- "actionId": 0,
- "name": "string",
- "detailId": 0,
- "detail": "string",
- "action": {
- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": null,
- "detail": null,
- "actionId": null
}
]
}, - "repeatAfterMinutes": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}, - "tokenType": {
- "id": null,
- "type": null
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
]
}, - "lastRepeated": "2019-08-24T14:15:22Z"
}
]
}
], - "slas": [
- {
- "slaId": 0,
- "requirement": {
- "id": 0,
- "name": "string"
}, - "time": "string",
- "internalTime": "2019-08-24T14:15:22Z",
- "masterVisionCardFrequencyId": 0,
- "offset": 0
}
], - "masterVisionCardFrequencyId": 0
}
], - "roleId": 0,
- "roleName": "string",
- "associatedRoles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "children": [
- { }
]
}| id required | integer <int32> The workspace id. Must be 1. |
| id | integer <int32> The card id. |
| version | integer <int32> The card version. |
| trackId | string or null The track id in GUID format. |
| trackIdInternal | string or null <uuid> |
| name | string or null The card name. |
| description | string or null The card description. |
| tagPattern | string or null The tag pattern. |
| offset | integer <int32> The offset in days, +/- 5 days, of the schedule date on which Vision has to look for jobs. |
| qosTolerableThreshold | integer or null <int32> Defines the value to indicate the QoS tolerable threshold (0 - 100). |
| qosCriticalThreshold | integer or null <int32> Defines the value to indicate the QoS critical threshold (0 - 100). |
| slaTolerableThreshold | integer or null <int32> Defines the value to indicate the SLA tolerable threshold (0 - 100). |
| slaCriticalThreshold | integer or null <int32> Defines the value to indicate the SLA critical threshold (0 - 100). |
| remoteInstanceId | integer or null <int32> |
| remoteInstanceName | string or null |
object (RemoteInstance) | |
| parentMasterVisionCard | object (MasterVisionCard) Recursive |
| parentId | integer <int32> |
Array of objects or null (MonitoredVisionFrequency) A list of frequencies associated with the card. | |
| roleId | integer or null <int32> |
| roleName | string or null |
Array of objects or null (Role) A list of roles assigned to the card. | |
| children | Array of objects or null (MasterVisionCard) A list of child cards assigned to the card. |
{- "id": 0,
- "version": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "name": "string",
- "description": "string",
- "tagPattern": "string",
- "offset": 0,
- "qosTolerableThreshold": 0,
- "qosCriticalThreshold": 0,
- "slaTolerableThreshold": 0,
- "slaCriticalThreshold": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "parentMasterVisionCard": { },
- "parentId": 0,
- "associatedFrequencies": [
- {
- "id": 0,
- "visionFrequency": {
- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}, - "triggerConditions": [
- {
- "id": 0,
- "statusId": 0,
- "condition": {
- "id": 0,
- "name": "string"
}, - "runnables": [
- {
- "id": 0,
- "actionId": 0,
- "name": "string",
- "detailId": 0,
- "detail": "string",
- "action": {
- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": null,
- "detail": null,
- "actionId": null
}
]
}, - "repeatAfterMinutes": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}, - "tokenType": {
- "id": null,
- "type": null
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
]
}, - "lastRepeated": "2019-08-24T14:15:22Z"
}
]
}
], - "slas": [
- {
- "slaId": 0,
- "requirement": {
- "id": 0,
- "name": "string"
}, - "time": "string",
- "internalTime": "2019-08-24T14:15:22Z",
- "masterVisionCardFrequencyId": 0,
- "offset": 0
}
], - "masterVisionCardFrequencyId": 0
}
], - "roleId": 0,
- "roleName": "string",
- "associatedRoles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "children": [
- { }
]
}{- "id": 0,
- "version": 0,
- "trackId": "string",
- "trackIdInternal": "a286c8f6-fa07-448e-953e-cbd6ca854a46",
- "name": "string",
- "description": "string",
- "tagPattern": "string",
- "offset": 0,
- "qosTolerableThreshold": 0,
- "qosCriticalThreshold": 0,
- "slaTolerableThreshold": 0,
- "slaCriticalThreshold": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "parentMasterVisionCard": { },
- "parentId": 0,
- "associatedFrequencies": [
- {
- "id": 0,
- "visionFrequency": {
- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}, - "triggerConditions": [
- {
- "id": 0,
- "statusId": 0,
- "condition": {
- "id": 0,
- "name": "string"
}, - "runnables": [
- {
- "id": 0,
- "actionId": 0,
- "name": "string",
- "detailId": 0,
- "detail": "string",
- "action": {
- "id": 0,
- "name": "string",
- "actionDetails": [
- {
- "id": null,
- "detail": null,
- "actionId": null
}
]
}, - "repeatAfterMinutes": 0,
- "remoteInstanceId": 0,
- "remoteInstanceName": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- null
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- null
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}, - "tokenType": {
- "id": null,
- "type": null
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": null,
- "loginName": null,
- "name": null,
- "password": null,
- "externalPassword": null,
- "externalHashedToken": null,
- "details": null,
- "moreDetails": null,
- "roles": [ ],
- "language": null,
- "isExternalTokenDisabled": null,
- "isDisabled": null,
- "forcePasswordChange": null,
- "email": null,
- "numberOfFailedPasswordAttempts": null,
- "passwordNeverExpires": null,
- "lastPasswordChangeDate": null,
- "lastLoggedIn": null,
- "lastLoggedOut": null,
- "isSelfServiceUser": null,
- "historicalPasswords": [ ],
- "solutionManagerSettings": null
}
]
}, - "lastRepeated": "2019-08-24T14:15:22Z"
}
]
}
], - "slas": [
- {
- "slaId": 0,
- "requirement": {
- "id": 0,
- "name": "string"
}, - "time": "string",
- "internalTime": "2019-08-24T14:15:22Z",
- "masterVisionCardFrequencyId": 0,
- "offset": 0
}
], - "masterVisionCardFrequencyId": 0
}
], - "roleId": 0,
- "roleName": "string",
- "associatedRoles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- { }
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- 0
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "children": [
- { }
]
}| Ids | string |
| From | string The start date represented in the % QoS Failure(s) and % SLA Failure(s) frames. |
| To | string The end date represented in the % QoS Failure(s) and % SLA Failure(s) frames. |
| CardIds | string The card ids |
| ExcludeQos | boolean Flag to exclude QoS (Quality of Service) |
| ExcludeSla | boolean Flag to exclude SLA (Service Level Agreement) |
Array of objects (CardTrackId) List of Vision card track ids |
[- {
- "cardId": 0,
- "cardPath": "string",
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "qos": 0,
- "sla": 0,
- "qosStatus": {
- "tolerableThreshold": 0,
- "criticalThreshold": 0,
- "status": 1
}, - "slaStatus": {
- "tolerableThreshold": 0,
- "criticalThreshold": 0,
- "status": 1
}
}
]| id | integer <int32> The vision frequency id. |
| name | string or null The vision frequency name. |
| description | string or null The description. |
| type | integer or null <int32> The vision frequency type. 0 = dates included (default); 1 = dates excluded |
| dates | Array of strings or null The vision frequency dates. |
{- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}{- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}| id required | integer <int32> The vision frequency id. |
| id | integer <int32> The vision frequency id. |
| name | string or null The vision frequency name. |
| description | string or null The description. |
| type | integer or null <int32> The vision frequency type. 0 = dates included (default); 1 = dates excluded |
| dates | Array of strings or null The vision frequency dates. |
{- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}{- "id": 0,
- "name": "string",
- "description": "string",
- "type": 0,
- "dates": [
- "string"
]
}| VisionCardAnomalyId | integer <int64> The anomaly id. |
| VisionCardAnomalyIds | string A comma-separated list of anomaly ids. |
| ScheduleDate | string <date-time> The schedule date. |
| TagPattern | string The tag pattern. |
| StartedLate | boolean Flag to include jobs that started late. |
| EndedLate | boolean Flag to include jobs that ended late. |
| ExpectedStartTime | string <date-time> The expected job start time. |
| ExpectedEndTime | string <date-time> The expected job end time. |
| ActualStartTime | string <date-time> The actual job start time. |
| ActualEndTime | string <date-time> The actual job end time. |
[- {
- "visionCardAnomaly": {
- "id": 0,
- "visionHistoryId": 0,
- "cardId": 0
}, - "scheduleDate": "string",
- "scheduleDateInternal": "2019-08-24T14:15:22Z",
- "scheduleId": 0,
- "scheduleName": "string",
- "tags": [
- "string"
], - "schedulePath": "string",
- "jobName": "string",
- "runNumber": 0,
- "remoteInstance": {
- "status": 1,
- "id": 0,
- "name": "string",
- "description": "string",
- "databaseConnection": {
- "server": "string",
- "database": "string",
- "windowsAuth": true,
- "user": "string",
- "password": "string",
- "mirroring": true
}, - "apiBaseUrl": "string",
- "solutionManagerBaseUrl": "string",
- "adminUser": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "departmentFunctionPrivileges": [
- {
- "id": 0,
- "functionIds": [
- null
]
}
], - "machinePrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "machineGroupPrivileges": [
- {
- "id": 0,
- "canUpdate": true,
- "canUpdateInt": 0
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "adminToken": {
- "id": "string",
- "user": {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}, - "tokenType": {
- "id": "string",
- "type": "string"
}, - "validFrom": "2019-08-24T14:15:22Z",
- "validUntil": "2019-08-24T14:15:22Z",
- "passwordExpired": true
}, - "masterInstanceId": 0,
- "connectionString": "string",
- "visionActionUsers": [
- {
- "id": 0,
- "loginName": "string",
- "name": "string",
- "password": "string",
- "externalPassword": "string",
- "externalHashedToken": "string",
- "details": "string",
- "moreDetails": "string",
- "roles": [
- {
- "id": 0,
- "name": "string",
- "users": [
- { }
], - "inheritAllSchedulePrivileges": true,
- "inheritAllMachinePrivileges": true,
- "inheritAllMachineGroupPrivileges": true,
- "inheritAllEmbeddedScriptPrivileges": true,
- "permissions": {
- "accessCodePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "departmentFunctionPrivileges": [
- {
- "id": null,
- "functionIds": [ ]
}
], - "machinePrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "machineGroupPrivileges": [
- {
- "id": null,
- "canUpdate": null,
- "canUpdateInt": null
}
], - "accessibleScheduleIds": [
- 0
], - "accessibleEmbeddedScriptIds": [
- 0
], - "accessibleServiceRequestIds": [
- 0
], - "accessibleBatchUserIds": [
- 0
]
}
}
], - "language": "string",
- "isExternalTokenDisabled": true,
- "isDisabled": true,
- "forcePasswordChange": true,
- "email": "string",
- "numberOfFailedPasswordAttempts": 0,
- "passwordNeverExpires": true,
- "lastPasswordChangeDate": "string",
- "lastLoggedIn": "string",
- "lastLoggedOut": "string",
- "isSelfServiceUser": true,
- "historicalPasswords": [
- "string"
], - "solutionManagerSettings": "string"
}
]
}, - "startTime": "string",
- "startTimeInternal": "2019-08-24T14:15:22Z",
- "endTime": "string",
- "endTimeInternal": "2019-08-24T14:15:22Z",
- "duration": 0,
- "jobStatus": {
- "id": 0,
- "startStatus": 0,
- "description": "string",
- "category": "string",
- "changeReason": "string"
}, - "status": [
- {
- "condition": {
- "id": 0,
- "name": "string"
}, - "sla": {
- "requirement": {
- "id": 0,
- "name": "string"
}, - "dateTime": "string"
}
}
]
}
]| Ids | string |
| From | string The start date represented in the % QoS Failure(s) and % SLA Failure(s) frames. |
| To | string The end date represented in the % QoS Failure(s) and % SLA Failure(s) frames. |
| CardIds | string The card ids |
| ExcludeQos | boolean Flag to exclude QoS (Quality of Service) |
| ExcludeSla | boolean Flag to exclude SLA (Service Level Agreement) |
Array of objects (CardTrackId) List of Vision card track ids |
{- "qos": 0,
- "sla": 0,
- "qosStatus": {
- "tolerableThreshold": 0,
- "criticalThreshold": 0,
- "status": 1
}, - "slaStatus": {
- "tolerableThreshold": 0,
- "criticalThreshold": 0,
- "status": 1
}, - "visionDayStatistics": [
- {
- "visionDate": "string",
- "visionDateInternal": "2019-08-24T14:15:22Z",
- "qos": 0,
- "sla": 0,
- "qosStatus": {
- "tolerableThreshold": 0,
- "criticalThreshold": 0,
- "status": 1
}, - "slaStatus": {
- "tolerableThreshold": 0,
- "criticalThreshold": 0,
- "status": 1
}
}
]
}