Returns the list of bundles that are available for purchase. A bundle describes the specs for your virtual private server (or instance).
lightsail_get_bundles(includeInactive, pageToken)
A list with the following syntax:
list(
bundles = list(
list(
price = 123.0,
cpuCount = 123,
diskSizeInGb = 123,
bundleId = "string",
instanceType = "string",
isActive = TRUE|FALSE,
name = "string",
power = 123,
ramSizeInGb = 123.0,
transferPerMonthInGb = 123,
supportedPlatforms = list(
"LINUX_UNIX"|"WINDOWS"
)
)
),
nextPageToken = "string"
)
A Boolean value that indicates whether to include inactive bundle results in your request.
The token to advance to the next page of results from your request.
To get a page token, perform an initial
get_bundles
request. If your results are
paginated, the response will return a next page token that you can
specify as the page token in a subsequent request.
svc$get_bundles(
includeInactive = TRUE|FALSE,
pageToken = "string"
)