Skip to content

Get Blueprint

glue_get_blueprint R Documentation

Retrieves the details of a blueprint

Description

Retrieves the details of a blueprint.

Usage

glue_get_blueprint(Name, IncludeBlueprint, IncludeParameterSpec)

Arguments

Name

[required] The name of the blueprint.

IncludeBlueprint

Specifies whether or not to include the blueprint in the response.

IncludeParameterSpec

Specifies whether or not to include the parameter specification.

Value

A list with the following syntax:

list(
  Blueprint = list(
    Name = "string",
    Description = "string",
    CreatedOn = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedOn = as.POSIXct(
      "2015-01-01"
    ),
    ParameterSpec = "string",
    BlueprintLocation = "string",
    BlueprintServiceLocation = "string",
    Status = "CREATING"|"ACTIVE"|"UPDATING"|"FAILED",
    ErrorMessage = "string",
    LastActiveDefinition = list(
      Description = "string",
      LastModifiedOn = as.POSIXct(
        "2015-01-01"
      ),
      ParameterSpec = "string",
      BlueprintLocation = "string",
      BlueprintServiceLocation = "string"
    )
  )
)

Request syntax

svc$get_blueprint(
  Name = "string",
  IncludeBlueprint = TRUE|FALSE,
  IncludeParameterSpec = TRUE|FALSE
)