Learn R Programming

paws.compute (version 0.1.12)

lightsail_get_bundles: Returns the list of bundles that are available for purchase

Description

Returns the list of bundles that are available for purchase. A bundle describes the specs for your virtual private server (or instance).

Usage

lightsail_get_bundles(includeInactive, pageToken)

Value

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"
)

Arguments

includeInactive

A Boolean value that indicates whether to include inactive bundle results in your request.

pageToken

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.

Request syntax

svc$get_bundles(
  includeInactive = TRUE|FALSE,
  pageToken = "string"
)