Skip to content

Get Landing Zone Operation

controltower_get_landing_zone_operation R Documentation

Returns the status of the specified landing zone operation

Description

Returns the status of the specified landing zone operation. Details for an operation are available for 90 days.

Usage

controltower_get_landing_zone_operation(operationIdentifier)

Arguments

operationIdentifier

[required] A unique identifier assigned to a landing zone operation.

Value

A list with the following syntax:

list(
  operationDetails = list(
    endTime = as.POSIXct(
      "2015-01-01"
    ),
    operationIdentifier = "string",
    operationType = "DELETE"|"CREATE"|"UPDATE"|"RESET",
    startTime = as.POSIXct(
      "2015-01-01"
    ),
    status = "SUCCEEDED"|"FAILED"|"IN_PROGRESS",
    statusMessage = "string"
  )
)

Request syntax

svc$get_landing_zone_operation(
  operationIdentifier = "string"
)