Skip to main content

CloudService

No description

type CloudService 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
timestamp: DateTime
type: MonitoredSystemType!
uuid: String
serviceTypeId: Int!
serviceTypeName: String!
configuration: String
credential: Credentials
server: Server
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!
proxy: Proxy
cloudServiceType: CloudServiceType!
settings: CloudSettings!
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

CloudService.id ● ID! non-null scalar

CloudService.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

CloudService.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" }

CloudService.checks.where ● FilterInput input

The filter conditions for this query.

CloudService.checks.order ● OrderInput input

The order of the results.

CloudService.checkCount ● Int! non-null scalar

Count the affected checks.

CloudService.checkCount.where ● FilterInput input

The filter conditions for this query.

CloudService.checkCountSummary ● CheckCountSummary! non-null object

Get a check count summary.

CloudService.checkCountSummary.filter ● CheckKind enum

CloudService.checksRelay ● CheckConnection object

CloudService.checksRelay.first ● Int scalar
CloudService.checksRelay.after ● String scalar
CloudService.checksRelay.where ● FilterInput input
CloudService.checksRelay.order ● OrderInput input

CloudService.customAttributes ● [CustomAttribute!]! non-null object

Custom attributes defined for this monitored system.

CloudService.customData ● String scalar

Special data for this monitored system

CloudService.customer ● Customer! non-null object

CloudService.description ● String scalar

CloudService.maintenance ● Boolean scalar

CloudService.monitorOff ● Boolean scalar

CloudService.monitorOffUntil ● DateTime scalar

CloudService.monitorSwitchReason ● String scalar

CloudService.monitorSwitchDate ● DateTime scalar

CloudService.name ● String scalar

CloudService.operational ● Boolean scalar

CloudService.operationalSince ● Date scalar

CloudService.operationalUntil ● Date scalar

CloudService.status ● Status! non-null enum

The status of the monitored system

CloudService.statusId ● Int! non-null scalar

The check status as number: 2 => CRITICAL 1 => WARNING 0 => OK -1 => UNKNOWN -2 => DISABLED

CloudService.systemRole ● String deprecated scalar

DEPRECATED

Use the improved variant role that points to a SystemRole type.

The role of this system.

CloudService.role ● SystemRole object

The role of this system.

CloudService.timestamp ● DateTime scalar

CloudService.type ● MonitoredSystemType! non-null enum

CloudService.uuid ● String scalar

CloudService.serviceTypeId ● Int! non-null scalar

CloudService.serviceTypeName ● String! non-null scalar

CloudService.configuration ● String scalar

CloudService.credential ● Credentials object

CloudService.server ● Server object

Associated server (it is marked as nullable as there are records without a server assigned.

CloudService.actions ● [SystemAction!]! non-null object

Get all the possible system actions. They can be used with mutation executeSystemAction(...).

CloudService.actions.actionType ● [SystemActionType!] list enum

CloudService.performance ● MonitoredSystemPerformanceData object

This field holds information about the available performance resources for this monitored system.

CloudService.administrator ● User object

Who is responsible as administrator for this system.

CloudService.administratorDeputy ● User object

Who is responsible as administrator deputy for this system.

CloudService.remote ● Boolean! non-null scalar

Is this a remote system

CloudService.info ● [InfoNode] list object

Information about this monitored system.

CloudService.applicationType ● String scalar

The application type of this monitored system.

CloudService.assignedSLA ● ServiceLevelAgreement object

The assigned SLA (service level agreement).

CloudService.monitorLevel ● MonitorLevel! non-null enum

The monitor level

CloudService.credentialPurposes ● [CredentialsPurpose]! non-null object

Available credential purposes for this system.

CloudService.credentials ● [CredentialsBase]! non-null interface

Available credentials for this system.

CloudService.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.

CloudService.notifications ● [Notification]! non-null interface

Associated notification actions

CloudService.notifications.where ● FilterInput input
CloudService.notifications.order ● OrderInput input

CloudService.pagedNotifications ● NotificationPage! non-null object

The paged variant for the notification field.

CloudService.pagedNotifications.pageRequest ● PageRequest! non-null input
CloudService.pagedNotifications.where ● FilterInput input
CloudService.pagedNotifications.order ● OrderInput input

CloudService.proxy ● Proxy object

An optionally associated proxy.

CloudService.cloudServiceType ● CloudServiceType! non-null enum

The cloud service type.

CloudService.settings ● CloudSettings! non-null object

Cloud settings depending on the type.

CloudService.managedStatus ● ManagedSystemStatus! non-null enum

Managed status for this system.

CloudService.monitoringParametersGroups ● [MonitoringParameterGroup!]! non-null object

Monitoring parameter groups

CloudService.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 } } }

CloudService.monitoringParameterByName.name ● String! non-null scalar

CloudService.draft ● Boolean! non-null scalar

Tells if a draft or a saved system.

CloudService.application ● ApplicationType object

The application type for this monitored system.

CloudService.changes ● [Change!]! non-null object

Changes for this monitored system.

CloudService.changes.where ● FilterInput input
CloudService.changes.order ● OrderInput input

CloudService.pagedChanges ● ChangePage object

Paged changes for this monitored system.

CloudService.pagedChanges.pageRequest ● PageRequest! non-null input
CloudService.pagedChanges.where ● FilterInput input
CloudService.pagedChanges.order ● OrderInput input

CloudService.systemParameterSets ● [SystemParameterSet!]! non-null object

Returns all available system parameter sets.

Interfaces

MonitoredSystem interface

Interface for a monitored system

Returned By

cloudService query ● cloudServices query ● turnMonitoringOffForCloudService mutation ● turnMonitoringOnForCloudService mutation

Member Of

CloudServicePage object ● CreateCloudServicePayload object ● Server object ● UpdateCloudServicePayload object