MCPcopy Index your code
hub / github.com/cloudfoundry/cli / GetSpaceManifestDiff

Method GetSpaceManifestDiff

api/cloudcontroller/ccv3/manifest.go:20–32  ·  view source on GitHub ↗
(spaceGUID string, rawManifest []byte)

Source from the content-addressed store, hash-verified

18}
19
20func (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}

Callers

nothing calls this directly

Calls 1

MakeRequestSendRawMethod · 0.65

Tested by

no test coverage detected