GetOrganizationSpaces returns a list of spaces in the specified org
(orgGUID string)
| 239 | |
| 240 | // GetOrganizationSpaces returns a list of spaces in the specified org |
| 241 | func (actor Actor) GetOrganizationSpaces(orgGUID string) ([]resources.Space, Warnings, error) { |
| 242 | return actor.GetOrganizationSpacesWithLabelSelector(orgGUID, "") |
| 243 | } |
| 244 | |
| 245 | func (actor Actor) DeleteSpaceByNameAndOrganizationName(spaceName string, orgName string) (Warnings, error) { |
| 246 | var allWarnings Warnings |
no test coverage detected