github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/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 }