Add projectName member of StackSummary API type

This will allow the service to include information about what project
a stack is assocated with when listing all stacks a user has access
to.

This was not previously needed because the project did not play into
the stack identity, but it will shortly.
This commit is contained in:
Matt Ellis 2019-01-08 12:52:09 -08:00
parent 8b52e480ed
commit 732166450e

View file

@ -18,6 +18,8 @@ package apitype
type StackSummary struct {
// OrgName is the organization name the stack is found in.
OrgName string `json:"orgName"`
// ProjectName is the name of the project the stack is associated with.
ProjectName string `json:"projectName"`
// StackName is the name of the stack.
StackName string `json:"stackName"`