(spaceGUID string, rawManifest []byte)
| 18 | } |
| 19 | |
| 20 | func (client *Client) GetSpaceManifestDiff(spaceGUID string, rawManifest []byte) (resources.ManifestDiff, Warnings, error) { |
| 21 | var responseBody resources.ManifestDiff |
| 22 | |
| 23 | _, warnings, err := client.MakeRequestSendRaw( |
| 24 | internal.PostSpaceDiffManifestRequest, |
| 25 | internal.Params{"space_guid": spaceGUID}, |
| 26 | rawManifest, |
| 27 | "application/x-yaml", |
| 28 | &responseBody, |
| 29 | ) |
| 30 | |
| 31 | return responseBody, warnings, err |
| 32 | } |
nothing calls this directly
no test coverage detected