Bluelink
HTTP API Referencev1

Get Blueprint Instance Exports

Retrieve the exports from a blueprint deployment instance. This will return exported fields from the blueprint instance.

GET
/deployments/instances/{id}/exports
AuthorizationBearer <token>

OAuth2/OIDC auth using JWT Bearer tokens. The token issuer will be configured independently for each Deploy Engine instance.

In: header

Path Parameters

idstring

The ID or unique name of a blueprint instance to get exports for.

Header Parameters

Bluelink-Signature-V1?string

The Bluelink Signature v1 authentication mechanism can be used to authenticate requests to the Deploy Engine. See the Bluelink Signature v1 documentation for more information on how to use this authentication mechanism. This is not required if the request is authenticated using an OAuth2/OIDC-issued JWT or an API key.

Response Body

curl -X GET "https://{host}/{basePath}/v1/deployments/instances/16ef8989-af00-4a4a-8164-72493ceb1aa0/exports" \  -H "Bluelink-Signature-V1: string"
{
  "my-export": {
    "value": "arn:aws:lambda:us-east-1:123456789012:function:my-lambda-function",
    "type": "string",
    "description": "The ARN of the lambda function",
    "field": "resources[\"my-resource\"].spec.arn"
  }
}
{
  "message": "Unauthorized"
}
{
  "message": "Not found"
}
{
  "message": "An unexpected error occurred"
}