github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/api/cloudcontroller/ccv3/included_resources.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  	ServiceInstances []resources.ServiceInstance `json:"service_instances,omitempty"`
    10  	ServiceOfferings []resources.ServiceOffering `json:"service_offerings,omitempty"`
    11  	ServiceBrokers   []resources.ServiceBroker   `json:"service_brokers,omitempty"`
    12  	ServicePlans     []resources.ServicePlan     `json:"service_plans,omitempty"`
    13  	Apps             []resources.Application     `json:"apps,omitempty"`
    14  }