github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/resources/stack_resource.go (about) 1 package resources 2 3 type Stack struct { 4 // GUID is a unique stack identifier. 5 GUID string `json:"guid"` 6 // Name is the name of the stack. 7 Name string `json:"name"` 8 // Description is the description for the stack 9 Description string `json:"description"` 10 11 // Metadata is used for custom tagging of API resources 12 Metadata *Metadata `json:"metadata,omitempty"` 13 }