SapBusinessObject
No description
type SapBusinessObject implements MonitoredSystem {
id: ID!
mst: Int!
checks(
where: FilterInput
order: OrderInput
): [Check!]!
checkCount(
where: FilterInput
): Int!
checkCountSummary(
filter: CheckKind
): CheckCountSummary!
checksRelay(
first: Int
after: String
where: FilterInput
order: OrderInput
): CheckConnection
customAttributes: [CustomAttribute!]!
customData: String
customer: Customer!
description: String
maintenance: Boolean
monitorOff: Boolean
monitorOffUntil: DateTime
monitorSwitchReason: String
monitorSwitchDate: DateTime
name: String
operational: Boolean
operationalSince: Date
operationalUntil: Date
status: Status!
statusId: Int!
systemRole: String @deprecated
role: SystemRole
type: MonitoredSystemType!
timestamp: DateTime
uuid: String
baseUrl: String
cmsUser: UserPassword
windowsServiceName: String
server: Server
database: Database
actions(
actionType: [SystemActionType!] = [Start, Stop, Restart]
): [SystemAction!]!
performance: MonitoredSystemPerformanceData
administrator: User
administratorDeputy: User
remote: Boolean!
info: [InfoNode]
applicationType: String
assignedSLA: ServiceLevelAgreement
monitorLevel: MonitorLevel!
credentialPurposes: [CredentialsPurpose]!
credentials: [CredentialsBase]!
notSeen: Boolean
notifications(
where: FilterInput
order: OrderInput
): [Notification]!
pagedNotifications(
pageRequest: PageRequest!
where: FilterInput
order: OrderInput
): NotificationPage!
managedStatus: ManagedSystemStatus!
monitoringParametersGroups: [MonitoringParameterGroup!]!
monitoringParameterByName(
name: String!
): ValueParameter
draft: Boolean!
application: ApplicationType
changes(
where: FilterInput
order: OrderInput
): [Change!]!
pagedChanges(
pageRequest: PageRequest!
where: FilterInput
order: OrderInput
): ChangePage
systemParameterSets: [SystemParameterSet!]!
}
Fields
SapBusinessObject.id ● ID! non-null scalar
SapBusinessObject.mst ● Int! non-null scalar
The numeric monitored system type. 0 = Server 1 = SapInstance 2 = SapSystem 3 = Database (can be StandaloneDatabase or SapSystemDatabase) (4 = BusinessService) 5 = SapBusinessObject 6 = CloudService
SapBusinessObject.checks ● [Check!]! non-null interface
Get all the available RTM checks for the given status selection. If the call should return different kind of checks the filter input has to be used with the explicit value for the kind field. If there is no kind filter field defined it defaults to: { name: "kind" operator: eq value: "RTM" }
SapBusinessObject.checks.where ● FilterInput input
The filter conditions for this query.
SapBusinessObject.checks.order ● OrderInput input
The order of the results.
SapBusinessObject.checkCount ● Int! non-null scalar
Count the affected checks.
SapBusinessObject.checkCount.where ● FilterInput input
The filter conditions for this query.
SapBusinessObject.checkCountSummary ● CheckCountSummary! non-null object
Get a check count summary.
SapBusinessObject.checkCountSummary.filter ● CheckKind enum
SapBusinessObject.checksRelay ● CheckConnection object
SapBusinessObject.checksRelay.first ● Int scalar
SapBusinessObject.checksRelay.after ● String scalar
SapBusinessObject.checksRelay.where ● FilterInput input
SapBusinessObject.checksRelay.order ● OrderInput input
SapBusinessObject.customAttributes ● [CustomAttribute!]! non-null object
Custom attributes defined for this monitored system.
SapBusinessObject.customData ● String scalar
Special data for this monitored system
SapBusinessObject.customer ● Customer! non-null object
SapBusinessObject.description ● String scalar
SapBusinessObject.maintenance ● Boolean scalar
SapBusinessObject.monitorOff ● Boolean scalar
SapBusinessObject.monitorOffUntil ● DateTime scalar
SapBusinessObject.monitorSwitchReason ● String scalar
SapBusinessObject.monitorSwitchDate ● DateTime scalar
SapBusinessObject.name ● String scalar
SapBusinessObject.operational ● Boolean scalar
SapBusinessObject.operationalSince ● Date scalar
SapBusinessObject.operationalUntil ● Date scalar
SapBusinessObject.status ● Status! non-null enum
The status of the monitored system
SapBusinessObject.statusId ● Int! non-null scalar
The check status as number: 2 => CRITICAL 1 => WARNING 0 => OK -1 => UNKNOWN -2 => DISABLED
SapBusinessObject.systemRole ● String deprecated scalar
Use the improved variant role that points to a SystemRole type.
The role of this system.
SapBusinessObject.role ● SystemRole object
The role of this system.
SapBusinessObject.type ● MonitoredSystemType! non-null enum
SapBusinessObject.timestamp ● DateTime scalar
SapBusinessObject.uuid ● String scalar
SapBusinessObject.baseUrl ● String scalar
SapBusinessObject.cmsUser ● UserPassword object
SapBusinessObject.windowsServiceName ● String scalar
SapBusinessObject.server ● Server object
SapBusinessObject.database ● Database object
The associated database if there is one.
SapBusinessObject.actions ● [SystemAction!]! non-null object
Get all the possible system actions. They can be used with mutation executeSystemAction(...).
SapBusinessObject.actions.actionType ● [SystemActionType!] list enum
SapBusinessObject.performance ● MonitoredSystemPerformanceData object
This field holds information about the available performance resources for this monitored system.
SapBusinessObject.administrator ● User object
Who is responsible as administrator for this system.
SapBusinessObject.administratorDeputy ● User object
Who is responsible as administrator deputy for this system.
SapBusinessObject.remote ● Boolean! non-null scalar
Is this a remote system
SapBusinessObject.info ● [InfoNode] list object
Information about this monitored system.
SapBusinessObject.applicationType ● String scalar
The application type of this monitored system.
SapBusinessObject.assignedSLA ● ServiceLevelAgreement object
The assigned SLA (service level agreement).
SapBusinessObject.monitorLevel ● MonitorLevel! non-null enum
The monitor level
SapBusinessObject.credentialPurposes ● [CredentialsPurpose]! non-null object
Available credential purposes for this system.
SapBusinessObject.credentials ● [CredentialsBase]! non-null interface
Available credentials for this system.
SapBusinessObject.notSeen ● Boolean scalar
Whether this system is "not seen". Not seen means the system was once seen on an agent but now it isn't.
SapBusinessObject.notifications ● [Notification]! non-null interface
Associated notification actions
SapBusinessObject.notifications.where ● FilterInput input
SapBusinessObject.notifications.order ● OrderInput input
SapBusinessObject.pagedNotifications ● NotificationPage! non-null object
The paged variant for the notification field.
SapBusinessObject.pagedNotifications.pageRequest ● PageRequest! non-null input
SapBusinessObject.pagedNotifications.where ● FilterInput input
SapBusinessObject.pagedNotifications.order ● OrderInput input
SapBusinessObject.managedStatus ● ManagedSystemStatus! non-null enum
Managed status for this system.
SapBusinessObject.monitoringParametersGroups ● [MonitoringParameterGroup!]! non-null object
Monitoring parameter groups
SapBusinessObject.monitoringParameterByName ● ValueParameter object
Query a single monitoring parameter by its name. Here is an example query: query MoniParams { servers { agentConnect: monitoringParameterByName(name: "AgentListenerPort") { id name values } agentEnv: monitoringParameterByName(name: "AgentEnvironment") { id name values } } }
SapBusinessObject.monitoringParameterByName.name ● String! non-null scalar
SapBusinessObject.draft ● Boolean! non-null scalar
Tells if a draft or a saved system.
SapBusinessObject.application ● ApplicationType object
The application type for this monitored system.
SapBusinessObject.changes ● [Change!]! non-null object
Changes for this monitored system.
SapBusinessObject.changes.where ● FilterInput input
SapBusinessObject.changes.order ● OrderInput input
SapBusinessObject.pagedChanges ● ChangePage object
Paged changes for this monitored system.
SapBusinessObject.pagedChanges.pageRequest ● PageRequest! non-null input
SapBusinessObject.pagedChanges.where ● FilterInput input
SapBusinessObject.pagedChanges.order ● OrderInput input
SapBusinessObject.systemParameterSets ● [SystemParameterSet!]! non-null object
Returns all available system parameter sets.
Interfaces
MonitoredSystem interface
Interface for a monitored system
Returned By
businessObject query ● businessObjects query ● turnMonitoringOffForBusinessObject mutation ● turnMonitoringOnForBusinessObject mutation
Member Of
CreateSapBusinessObjectPayload object ● Database object ● SapBusinessObjectPage object ● Server object ● UpdateSapBusinessObjectPayload object