Skip to content

Get Configuration Check Operation

ssmsap_get_configuration_check_operation R Documentation

Gets the details of a configuration check operation by specifying the operation ID

Description

Gets the details of a configuration check operation by specifying the operation ID.

Usage

ssmsap_get_configuration_check_operation(OperationId)

Arguments

OperationId

[required] The ID of the configuration check operation.

Value

A list with the following syntax:

list(
  ConfigurationCheckOperation = list(
    Id = "string",
    ApplicationId = "string",
    Status = "INPROGRESS"|"SUCCESS"|"ERROR",
    StatusMessage = "string",
    ConfigurationCheckId = "SAP_CHECK_01"|"SAP_CHECK_02"|"SAP_CHECK_03",
    ConfigurationCheckName = "string",
    ConfigurationCheckDescription = "string",
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    RuleStatusCounts = list(
      Failed = 123,
      Warning = 123,
      Info = 123,
      Passed = 123,
      Unknown = 123
    )
  )
)

Request syntax

svc$get_configuration_check_operation(
  OperationId = "string"
)