Update Sync Blocker
codestarconnections_update_sync_blocker | R Documentation |
Allows you to update the status of a sync blocker, resolving the blocker and allowing syncing to continue¶
Description¶
Allows you to update the status of a sync blocker, resolving the blocker and allowing syncing to continue.
Usage¶
Arguments¶
Id
[required] The ID of the sync blocker to be updated.
SyncType
[required] The sync type of the sync blocker to be updated.
ResourceName
[required] The name of the resource for the sync blocker to be updated.
ResolvedReason
[required] The reason for resolving the sync blocker.
Value¶
A list with the following syntax:
list(
ResourceName = "string",
ParentResourceName = "string",
SyncBlocker = list(
Id = "string",
Type = "AUTOMATED",
Status = "ACTIVE"|"RESOLVED",
CreatedReason = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
Contexts = list(
list(
Key = "string",
Value = "string"
)
),
ResolvedReason = "string",
ResolvedAt = as.POSIXct(
"2015-01-01"
)
)
)