Skip to content

Update Service Sync Blocker

proton_update_service_sync_blocker R Documentation

Update the service sync blocker by resolving it

Description

Update the service sync blocker by resolving it.

Usage

proton_update_service_sync_blocker(id, resolvedReason)

Arguments

id

[required] The ID of the service sync blocker.

resolvedReason

[required] The reason the service sync blocker was resolved.

Value

A list with the following syntax:

list(
  serviceInstanceName = "string",
  serviceName = "string",
  serviceSyncBlocker = 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"
  )
)

Request syntax

svc$update_service_sync_blocker(
  id = "string",
  resolvedReason = "string"
)