Get Service Sync Blocker Summary
proton_get_service_sync_blocker_summary | R Documentation |
Get detailed data for the service sync blocker summary¶
Description¶
Get detailed data for the service sync blocker summary.
Usage¶
Arguments¶
serviceInstanceName
The name of the service instance that you want to get the service sync blocker summary for. If given bothe the instance name and the service name, only the instance is blocked.
serviceName
[required] The name of the service that you want to get the service sync blocker summary for. If given only the service name, all instances are blocked.
Value¶
A list with the following syntax:
list(
serviceSyncBlockerSummary = list(
latestBlockers = list(
list(
contexts = list(
list(
key = "string",
value = "string"
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdReason = "string",
id = "string",
resolvedAt = as.POSIXct(
"2015-01-01"
),
resolvedReason = "string",
status = "ACTIVE"|"RESOLVED",
type = "AUTOMATED"
)
),
serviceInstanceName = "string",
serviceName = "string"
)
)