github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/api/cloudcontroller/ccv3/included_resource.go (about)

     1  package ccv3
     2  
     3  import "code.cloudfoundry.org/cli/resources"
     4  
     5  type IncludedResources struct {
     6  	Users            []resources.User            `json:"users,omitempty"`
     7  	Organizations    []resources.Organization    `json:"organizations,omitempty"`
     8  	Spaces           []resources.Space           `json:"spaces,omitempty"`
     9  	ServiceOfferings []resources.ServiceOffering `json:"service_offerings,omitempty"`
    10  	ServiceBrokers   []resources.ServiceBroker   `json:"service_brokers,omitempty"`
    11  	Apps             []resources.Application     `json:"apps,omitempty"`
    12  }