Get Service Instance Sync Status
proton_get_service_instance_sync_status | R Documentation |
Get the status of the synced service instance¶
Description¶
Get the status of the synced service instance.
Usage¶
Arguments¶
serviceInstanceName
[required] The name of the service instance that you want the sync status input for.
serviceName
[required] The name of the service that the service instance belongs to.
Value¶
A list with the following syntax:
list(
desiredState = list(
branch = "string",
directory = "string",
repositoryName = "string",
repositoryProvider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET",
sha = "string"
),
latestSuccessfulSync = list(
events = list(
list(
event = "string",
externalId = "string",
time = as.POSIXct(
"2015-01-01"
),
type = "string"
)
),
initialRevision = list(
branch = "string",
directory = "string",
repositoryName = "string",
repositoryProvider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET",
sha = "string"
),
startedAt = as.POSIXct(
"2015-01-01"
),
status = "INITIATED"|"IN_PROGRESS"|"SUCCEEDED"|"FAILED",
target = "string",
targetRevision = list(
branch = "string",
directory = "string",
repositoryName = "string",
repositoryProvider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET",
sha = "string"
)
),
latestSync = list(
events = list(
list(
event = "string",
externalId = "string",
time = as.POSIXct(
"2015-01-01"
),
type = "string"
)
),
initialRevision = list(
branch = "string",
directory = "string",
repositoryName = "string",
repositoryProvider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET",
sha = "string"
),
startedAt = as.POSIXct(
"2015-01-01"
),
status = "INITIATED"|"IN_PROGRESS"|"SUCCEEDED"|"FAILED",
target = "string",
targetRevision = list(
branch = "string",
directory = "string",
repositoryName = "string",
repositoryProvider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET",
sha = "string"
)
)
)