You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And this one for space_guid:
Convey("should reject if request payload is missing space_guid", func() {
tempBody := openapi.ServiceInstanceProvisionRequest{}
deepCopy(req, &tempBody)
tempBody.SpaceGuid = ""
_, resp, err := cli.ServiceInstancesApi.ServiceInstanceProvision(
authCtx, CONF.APIVersion, instanceID, tempBody,
&openapi.ServiceInstanceProvisionOpts{AcceptsIncomplete: optional.NewBool(async)})
So(err, ShouldNotBeNil)
So(resp.StatusCode, ShouldEqual, 400)
})
These two parameters have been replaced with the parameter context (which is optional) in version 2.11 of the OSBAPI. Are they still necessary according to the current specifications?
The text was updated successfully, but these errors were encountered:
@mrgunior If you look at the spec, currently the organization_guid and space_guid fields are still required for request to provision an instance, I believe it's designed to be back-compatible with former version.
Branch: dev
File: provision.go
This test case for organization_guid:
These two parameters have been replaced with the parameter context (which is optional) in version 2.11 of the OSBAPI. Are they still necessary according to the current specifications?
The text was updated successfully, but these errors were encountered: