github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/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  }