Skip to content

List Launch Paths

servicecatalog_list_launch_paths R Documentation

Lists the paths to the specified product

Description

Lists the paths to the specified product. A path describes how the user gets access to a specified product and is necessary when provisioning a product. A path also determines the constraints that are put on a product. A path is dependent on a specific product, porfolio, and principal.

When provisioning a product that's been added to a portfolio, you must grant your user, group, or role access to the portfolio. For more information, see Granting users access in the Service Catalog User Guide.

Usage

servicecatalog_list_launch_paths(AcceptLanguage, ProductId, PageSize,
  PageToken)

Arguments

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

ProductId

[required] The product identifier.

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(
  LaunchPathSummaries = list(
    list(
      Id = "string",
      ConstraintSummaries = list(
        list(
          Type = "string",
          Description = "string"
        )
      ),
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      ),
      Name = "string"
    )
  ),
  NextPageToken = "string"
)

Request syntax

svc$list_launch_paths(
  AcceptLanguage = "string",
  ProductId = "string",
  PageSize = 123,
  PageToken = "string"
)