Skip to content

Get Provisioned Product Outputs

servicecatalog_get_provisioned_product_outputs R Documentation

This API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of one or more output keys, and responds with the key/value pairs of those outputs

Description

This API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of one or more output keys, and responds with the key/value pairs of those outputs.

Usage

servicecatalog_get_provisioned_product_outputs(AcceptLanguage,
  ProvisionedProductId, ProvisionedProductName, OutputKeys, PageSize,
  PageToken)

Arguments

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

ProvisionedProductId

The identifier of the provisioned product that you want the outputs from.

ProvisionedProductName

The name of the provisioned product that you want the outputs from.

OutputKeys

The list of keys that the API should return with their values. If none are provided, the API will return all outputs of the provisioned product.

PageSize

The maximum number of items to return with this call.

PageToken

The page token for the next set of results. To retrieve the first set of results, use null.

Value

A list with the following syntax:

list(
  Outputs = list(
    list(
      OutputKey = "string",
      OutputValue = "string",
      Description = "string"
    )
  ),
  NextPageToken = "string"
)

Request syntax

svc$get_provisioned_product_outputs(
  AcceptLanguage = "string",
  ProvisionedProductId = "string",
  ProvisionedProductName = "string",
  OutputKeys = list(
    "string"
  ),
  PageSize = 123,
  PageToken = "string"
)