spaces

package
v0.0.0-...-7977c27 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 18, 2021 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

View Source
const AssociateAuditorWithSpaceCreatedCode int = 201

AssociateAuditorWithSpaceCreatedCode is the HTTP code returned for type AssociateAuditorWithSpaceCreated

View Source
const AssociateDeveloperWithSpaceCreatedCode int = 201

AssociateDeveloperWithSpaceCreatedCode is the HTTP code returned for type AssociateDeveloperWithSpaceCreated

View Source
const AssociateManagerWithSpaceCreatedCode int = 201

AssociateManagerWithSpaceCreatedCode is the HTTP code returned for type AssociateManagerWithSpaceCreated

View Source
const AssociateSecurityGroupWithSpaceCreatedCode int = 201

AssociateSecurityGroupWithSpaceCreatedCode is the HTTP code returned for type AssociateSecurityGroupWithSpaceCreated

View Source
const CreateSpaceCreatedCode int = 201

CreateSpaceCreatedCode is the HTTP code returned for type CreateSpaceCreated

View Source
const DeleteSpaceNoContentCode int = 204

DeleteSpaceNoContentCode is the HTTP code returned for type DeleteSpaceNoContent

View Source
const GetSpaceSummaryOKCode int = 200

GetSpaceSummaryOKCode is the HTTP code returned for type GetSpaceSummaryOK

View Source
const ListAllAppsForSpaceOKCode int = 200

ListAllAppsForSpaceOKCode is the HTTP code returned for type ListAllAppsForSpaceOK

View Source
const ListAllAuditorsForSpaceOKCode int = 200

ListAllAuditorsForSpaceOKCode is the HTTP code returned for type ListAllAuditorsForSpaceOK

View Source
const ListAllDevelopersForSpaceOKCode int = 200

ListAllDevelopersForSpaceOKCode is the HTTP code returned for type ListAllDevelopersForSpaceOK

View Source
const ListAllDomainsForSpaceDeprecatedOKCode int = 200

ListAllDomainsForSpaceDeprecatedOKCode is the HTTP code returned for type ListAllDomainsForSpaceDeprecatedOK

View Source
const ListAllEventsForSpaceOKCode int = 200

ListAllEventsForSpaceOKCode is the HTTP code returned for type ListAllEventsForSpaceOK

View Source
const ListAllManagersForSpaceOKCode int = 200

ListAllManagersForSpaceOKCode is the HTTP code returned for type ListAllManagersForSpaceOK

View Source
const ListAllRoutesForSpaceOKCode int = 200

ListAllRoutesForSpaceOKCode is the HTTP code returned for type ListAllRoutesForSpaceOK

View Source
const ListAllSecurityGroupsForSpaceOKCode int = 200

ListAllSecurityGroupsForSpaceOKCode is the HTTP code returned for type ListAllSecurityGroupsForSpaceOK

View Source
const ListAllServiceInstancesForSpaceOKCode int = 200

ListAllServiceInstancesForSpaceOKCode is the HTTP code returned for type ListAllServiceInstancesForSpaceOK

View Source
const ListAllServicesForSpaceOKCode int = 200

ListAllServicesForSpaceOKCode is the HTTP code returned for type ListAllServicesForSpaceOK

View Source
const ListAllSpacesOKCode int = 200

ListAllSpacesOKCode is the HTTP code returned for type ListAllSpacesOK

View Source
const RemoveAuditorFromSpaceCreatedCode int = 201

RemoveAuditorFromSpaceCreatedCode is the HTTP code returned for type RemoveAuditorFromSpaceCreated

View Source
const RemoveDeveloperFromSpaceCreatedCode int = 201

RemoveDeveloperFromSpaceCreatedCode is the HTTP code returned for type RemoveDeveloperFromSpaceCreated

View Source
const RemoveManagerFromSpaceCreatedCode int = 201

RemoveManagerFromSpaceCreatedCode is the HTTP code returned for type RemoveManagerFromSpaceCreated

View Source
const RemoveSecurityGroupFromSpaceCreatedCode int = 201

RemoveSecurityGroupFromSpaceCreatedCode is the HTTP code returned for type RemoveSecurityGroupFromSpaceCreated

View Source
const RetrieveSpaceOKCode int = 200

RetrieveSpaceOKCode is the HTTP code returned for type RetrieveSpaceOK

View Source
const UpdateSpaceCreatedCode int = 201

UpdateSpaceCreatedCode is the HTTP code returned for type UpdateSpaceCreated

Variables

This section is empty.

Functions

This section is empty.

Types

type AssociateAuditorWithSpace

type AssociateAuditorWithSpace struct {
	Context *middleware.Context
	Handler AssociateAuditorWithSpaceHandler
}

AssociateAuditorWithSpace swagger:route PUT /spaces/{guid}/auditors/{auditor_guid} spaces associateAuditorWithSpace

Associate Auditor with the Space

curl --insecure -i %s/v2/spaces/{guid}/auditors/{auditor_guid} -X PUT -H 'Authorization: %s'

func NewAssociateAuditorWithSpace

func NewAssociateAuditorWithSpace(ctx *middleware.Context, handler AssociateAuditorWithSpaceHandler) *AssociateAuditorWithSpace

NewAssociateAuditorWithSpace creates a new http.Handler for the associate auditor with space operation

func (*AssociateAuditorWithSpace) ServeHTTP

type AssociateAuditorWithSpaceCreated

type AssociateAuditorWithSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.AssociateAuditorWithSpaceResponseResource `json:"body,omitempty"`
}

AssociateAuditorWithSpaceCreated successful response

swagger:response associateAuditorWithSpaceCreated

func NewAssociateAuditorWithSpaceCreated

func NewAssociateAuditorWithSpaceCreated() *AssociateAuditorWithSpaceCreated

NewAssociateAuditorWithSpaceCreated creates AssociateAuditorWithSpaceCreated with default headers values

func (*AssociateAuditorWithSpaceCreated) SetPayload

SetPayload sets the payload to the associate auditor with space created response

func (*AssociateAuditorWithSpaceCreated) WithPayload

WithPayload adds the payload to the associate auditor with space created response

func (*AssociateAuditorWithSpaceCreated) WriteResponse

func (o *AssociateAuditorWithSpaceCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type AssociateAuditorWithSpaceHandler

type AssociateAuditorWithSpaceHandler interface {
	Handle(AssociateAuditorWithSpaceParams) middleware.Responder
}

AssociateAuditorWithSpaceHandler interface for that can handle valid associate auditor with space params

type AssociateAuditorWithSpaceHandlerFunc

type AssociateAuditorWithSpaceHandlerFunc func(AssociateAuditorWithSpaceParams) middleware.Responder

AssociateAuditorWithSpaceHandlerFunc turns a function with the right signature into a associate auditor with space handler

func (AssociateAuditorWithSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateAuditorWithSpaceParams

type AssociateAuditorWithSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The auditor_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/auditors/:auditor_guid'
	  Required: true
	  In: path
	*/
	AuditorGUID string
	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/auditors/:auditor_guid'
	  Required: true
	  In: path
	*/
	GUID string
}

AssociateAuditorWithSpaceParams contains all the bound params for the associate auditor with space operation typically these are obtained from a http.Request

swagger:parameters associateAuditorWithSpace

func NewAssociateAuditorWithSpaceParams

func NewAssociateAuditorWithSpaceParams() AssociateAuditorWithSpaceParams

NewAssociateAuditorWithSpaceParams creates a new AssociateAuditorWithSpaceParams object no default values defined in spec.

func (*AssociateAuditorWithSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewAssociateAuditorWithSpaceParams() beforehand.

type AssociateAuditorWithSpaceURL

type AssociateAuditorWithSpaceURL struct {
	AuditorGUID string
	GUID        string
	// contains filtered or unexported fields
}

AssociateAuditorWithSpaceURL generates an URL for the associate auditor with space operation

func (*AssociateAuditorWithSpaceURL) Build

func (o *AssociateAuditorWithSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*AssociateAuditorWithSpaceURL) BuildFull

func (o *AssociateAuditorWithSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*AssociateAuditorWithSpaceURL) Must

func (o *AssociateAuditorWithSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*AssociateAuditorWithSpaceURL) SetBasePath

func (o *AssociateAuditorWithSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*AssociateAuditorWithSpaceURL) String

String returns the string representation of the path with query string

func (*AssociateAuditorWithSpaceURL) StringFull

func (o *AssociateAuditorWithSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*AssociateAuditorWithSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type AssociateDeveloperWithSpace

type AssociateDeveloperWithSpace struct {
	Context *middleware.Context
	Handler AssociateDeveloperWithSpaceHandler
}

AssociateDeveloperWithSpace swagger:route PUT /spaces/{guid}/developers/{developer_guid} spaces associateDeveloperWithSpace

Associate Developer with the Space

curl --insecure -i %s/v2/spaces/{guid}/developers/{developer_guid} -X PUT -H 'Authorization: %s'

func NewAssociateDeveloperWithSpace

func NewAssociateDeveloperWithSpace(ctx *middleware.Context, handler AssociateDeveloperWithSpaceHandler) *AssociateDeveloperWithSpace

NewAssociateDeveloperWithSpace creates a new http.Handler for the associate developer with space operation

func (*AssociateDeveloperWithSpace) ServeHTTP

type AssociateDeveloperWithSpaceCreated

type AssociateDeveloperWithSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.AssociateDeveloperWithSpaceResponseResource `json:"body,omitempty"`
}

AssociateDeveloperWithSpaceCreated successful response

swagger:response associateDeveloperWithSpaceCreated

func NewAssociateDeveloperWithSpaceCreated

func NewAssociateDeveloperWithSpaceCreated() *AssociateDeveloperWithSpaceCreated

NewAssociateDeveloperWithSpaceCreated creates AssociateDeveloperWithSpaceCreated with default headers values

func (*AssociateDeveloperWithSpaceCreated) SetPayload

SetPayload sets the payload to the associate developer with space created response

func (*AssociateDeveloperWithSpaceCreated) WithPayload

WithPayload adds the payload to the associate developer with space created response

func (*AssociateDeveloperWithSpaceCreated) WriteResponse

WriteResponse to the client

type AssociateDeveloperWithSpaceHandler

type AssociateDeveloperWithSpaceHandler interface {
	Handle(AssociateDeveloperWithSpaceParams) middleware.Responder
}

AssociateDeveloperWithSpaceHandler interface for that can handle valid associate developer with space params

type AssociateDeveloperWithSpaceHandlerFunc

type AssociateDeveloperWithSpaceHandlerFunc func(AssociateDeveloperWithSpaceParams) middleware.Responder

AssociateDeveloperWithSpaceHandlerFunc turns a function with the right signature into a associate developer with space handler

func (AssociateDeveloperWithSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateDeveloperWithSpaceParams

type AssociateDeveloperWithSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The developer_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/developers/:developer_guid'
	  Required: true
	  In: path
	*/
	DeveloperGUID string
	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/developers/:developer_guid'
	  Required: true
	  In: path
	*/
	GUID string
}

AssociateDeveloperWithSpaceParams contains all the bound params for the associate developer with space operation typically these are obtained from a http.Request

swagger:parameters associateDeveloperWithSpace

func NewAssociateDeveloperWithSpaceParams

func NewAssociateDeveloperWithSpaceParams() AssociateDeveloperWithSpaceParams

NewAssociateDeveloperWithSpaceParams creates a new AssociateDeveloperWithSpaceParams object no default values defined in spec.

func (*AssociateDeveloperWithSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewAssociateDeveloperWithSpaceParams() beforehand.

type AssociateDeveloperWithSpaceURL

type AssociateDeveloperWithSpaceURL struct {
	DeveloperGUID string
	GUID          string
	// contains filtered or unexported fields
}

AssociateDeveloperWithSpaceURL generates an URL for the associate developer with space operation

func (*AssociateDeveloperWithSpaceURL) Build

Build a url path and query string

func (*AssociateDeveloperWithSpaceURL) BuildFull

func (o *AssociateDeveloperWithSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*AssociateDeveloperWithSpaceURL) Must

func (o *AssociateDeveloperWithSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*AssociateDeveloperWithSpaceURL) SetBasePath

func (o *AssociateDeveloperWithSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*AssociateDeveloperWithSpaceURL) String

String returns the string representation of the path with query string

func (*AssociateDeveloperWithSpaceURL) StringFull

func (o *AssociateDeveloperWithSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*AssociateDeveloperWithSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type AssociateManagerWithSpace

type AssociateManagerWithSpace struct {
	Context *middleware.Context
	Handler AssociateManagerWithSpaceHandler
}

AssociateManagerWithSpace swagger:route PUT /spaces/{guid}/managers/{manager_guid} spaces associateManagerWithSpace

Associate Manager with the Space

curl --insecure -i %s/v2/spaces/{guid}/managers/{manager_guid} -X PUT -H 'Authorization: %s'

func NewAssociateManagerWithSpace

func NewAssociateManagerWithSpace(ctx *middleware.Context, handler AssociateManagerWithSpaceHandler) *AssociateManagerWithSpace

NewAssociateManagerWithSpace creates a new http.Handler for the associate manager with space operation

func (*AssociateManagerWithSpace) ServeHTTP

type AssociateManagerWithSpaceCreated

type AssociateManagerWithSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.AssociateManagerWithSpaceResponseResource `json:"body,omitempty"`
}

AssociateManagerWithSpaceCreated successful response

swagger:response associateManagerWithSpaceCreated

func NewAssociateManagerWithSpaceCreated

func NewAssociateManagerWithSpaceCreated() *AssociateManagerWithSpaceCreated

NewAssociateManagerWithSpaceCreated creates AssociateManagerWithSpaceCreated with default headers values

func (*AssociateManagerWithSpaceCreated) SetPayload

SetPayload sets the payload to the associate manager with space created response

func (*AssociateManagerWithSpaceCreated) WithPayload

WithPayload adds the payload to the associate manager with space created response

func (*AssociateManagerWithSpaceCreated) WriteResponse

func (o *AssociateManagerWithSpaceCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type AssociateManagerWithSpaceHandler

type AssociateManagerWithSpaceHandler interface {
	Handle(AssociateManagerWithSpaceParams) middleware.Responder
}

AssociateManagerWithSpaceHandler interface for that can handle valid associate manager with space params

type AssociateManagerWithSpaceHandlerFunc

type AssociateManagerWithSpaceHandlerFunc func(AssociateManagerWithSpaceParams) middleware.Responder

AssociateManagerWithSpaceHandlerFunc turns a function with the right signature into a associate manager with space handler

func (AssociateManagerWithSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateManagerWithSpaceParams

type AssociateManagerWithSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/managers/:manager_guid'
	  Required: true
	  In: path
	*/
	GUID string
	/*The manager_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/managers/:manager_guid'
	  Required: true
	  In: path
	*/
	ManagerGUID string
}

AssociateManagerWithSpaceParams contains all the bound params for the associate manager with space operation typically these are obtained from a http.Request

swagger:parameters associateManagerWithSpace

func NewAssociateManagerWithSpaceParams

func NewAssociateManagerWithSpaceParams() AssociateManagerWithSpaceParams

NewAssociateManagerWithSpaceParams creates a new AssociateManagerWithSpaceParams object no default values defined in spec.

func (*AssociateManagerWithSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewAssociateManagerWithSpaceParams() beforehand.

type AssociateManagerWithSpaceURL

type AssociateManagerWithSpaceURL struct {
	GUID        string
	ManagerGUID string
	// contains filtered or unexported fields
}

AssociateManagerWithSpaceURL generates an URL for the associate manager with space operation

func (*AssociateManagerWithSpaceURL) Build

func (o *AssociateManagerWithSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*AssociateManagerWithSpaceURL) BuildFull

func (o *AssociateManagerWithSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*AssociateManagerWithSpaceURL) Must

func (o *AssociateManagerWithSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*AssociateManagerWithSpaceURL) SetBasePath

func (o *AssociateManagerWithSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*AssociateManagerWithSpaceURL) String

String returns the string representation of the path with query string

func (*AssociateManagerWithSpaceURL) StringFull

func (o *AssociateManagerWithSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*AssociateManagerWithSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type AssociateSecurityGroupWithSpace

type AssociateSecurityGroupWithSpace struct {
	Context *middleware.Context
	Handler AssociateSecurityGroupWithSpaceHandler
}

AssociateSecurityGroupWithSpace swagger:route PUT /spaces/{guid}/security_groups/{security_group_guid} spaces associateSecurityGroupWithSpace

Associate Security Group with the Space

curl --insecure -i %s/v2/spaces/{guid}/security_groups/{security_group_guid} -X PUT -H 'Authorization: %s'

func NewAssociateSecurityGroupWithSpace

func NewAssociateSecurityGroupWithSpace(ctx *middleware.Context, handler AssociateSecurityGroupWithSpaceHandler) *AssociateSecurityGroupWithSpace

NewAssociateSecurityGroupWithSpace creates a new http.Handler for the associate security group with space operation

func (*AssociateSecurityGroupWithSpace) ServeHTTP

type AssociateSecurityGroupWithSpaceCreated

type AssociateSecurityGroupWithSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.AssociateSecurityGroupWithSpaceResponseResource `json:"body,omitempty"`
}

AssociateSecurityGroupWithSpaceCreated successful response

swagger:response associateSecurityGroupWithSpaceCreated

func NewAssociateSecurityGroupWithSpaceCreated

func NewAssociateSecurityGroupWithSpaceCreated() *AssociateSecurityGroupWithSpaceCreated

NewAssociateSecurityGroupWithSpaceCreated creates AssociateSecurityGroupWithSpaceCreated with default headers values

func (*AssociateSecurityGroupWithSpaceCreated) SetPayload

SetPayload sets the payload to the associate security group with space created response

func (*AssociateSecurityGroupWithSpaceCreated) WithPayload

WithPayload adds the payload to the associate security group with space created response

func (*AssociateSecurityGroupWithSpaceCreated) WriteResponse

WriteResponse to the client

type AssociateSecurityGroupWithSpaceHandler

type AssociateSecurityGroupWithSpaceHandler interface {
	Handle(AssociateSecurityGroupWithSpaceParams) middleware.Responder
}

AssociateSecurityGroupWithSpaceHandler interface for that can handle valid associate security group with space params

type AssociateSecurityGroupWithSpaceHandlerFunc

type AssociateSecurityGroupWithSpaceHandlerFunc func(AssociateSecurityGroupWithSpaceParams) middleware.Responder

AssociateSecurityGroupWithSpaceHandlerFunc turns a function with the right signature into a associate security group with space handler

func (AssociateSecurityGroupWithSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateSecurityGroupWithSpaceParams

type AssociateSecurityGroupWithSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/security_groups/:security_group_guid'
	  Required: true
	  In: path
	*/
	GUID string
	/*The security_group_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/security_groups/:security_group_guid'
	  Required: true
	  In: path
	*/
	SecurityGroupGUID string
}

AssociateSecurityGroupWithSpaceParams contains all the bound params for the associate security group with space operation typically these are obtained from a http.Request

swagger:parameters associateSecurityGroupWithSpace

func NewAssociateSecurityGroupWithSpaceParams

func NewAssociateSecurityGroupWithSpaceParams() AssociateSecurityGroupWithSpaceParams

NewAssociateSecurityGroupWithSpaceParams creates a new AssociateSecurityGroupWithSpaceParams object no default values defined in spec.

func (*AssociateSecurityGroupWithSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewAssociateSecurityGroupWithSpaceParams() beforehand.

type AssociateSecurityGroupWithSpaceURL

type AssociateSecurityGroupWithSpaceURL struct {
	GUID              string
	SecurityGroupGUID string
	// contains filtered or unexported fields
}

AssociateSecurityGroupWithSpaceURL generates an URL for the associate security group with space operation

func (*AssociateSecurityGroupWithSpaceURL) Build

Build a url path and query string

func (*AssociateSecurityGroupWithSpaceURL) BuildFull

func (o *AssociateSecurityGroupWithSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*AssociateSecurityGroupWithSpaceURL) Must

Must is a helper function to panic when the url builder returns an error

func (*AssociateSecurityGroupWithSpaceURL) SetBasePath

func (o *AssociateSecurityGroupWithSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*AssociateSecurityGroupWithSpaceURL) String

String returns the string representation of the path with query string

func (*AssociateSecurityGroupWithSpaceURL) StringFull

func (o *AssociateSecurityGroupWithSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*AssociateSecurityGroupWithSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type CreateSpace

type CreateSpace struct {
	Context *middleware.Context
	Handler CreateSpaceHandler
}

CreateSpace swagger:route POST /spaces spaces createSpace

Creating a Space

curl --insecure -i %s/v2/spaces -X POST -H 'Authorization: %s' -d '%s'

func NewCreateSpace

func NewCreateSpace(ctx *middleware.Context, handler CreateSpaceHandler) *CreateSpace

NewCreateSpace creates a new http.Handler for the create space operation

func (*CreateSpace) ServeHTTP

func (o *CreateSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type CreateSpaceCreated

type CreateSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.CreateSpaceResponseResource `json:"body,omitempty"`
}

CreateSpaceCreated successful response

swagger:response createSpaceCreated

func NewCreateSpaceCreated

func NewCreateSpaceCreated() *CreateSpaceCreated

NewCreateSpaceCreated creates CreateSpaceCreated with default headers values

func (*CreateSpaceCreated) SetPayload

func (o *CreateSpaceCreated) SetPayload(payload *models.CreateSpaceResponseResource)

SetPayload sets the payload to the create space created response

func (*CreateSpaceCreated) WithPayload

WithPayload adds the payload to the create space created response

func (*CreateSpaceCreated) WriteResponse

func (o *CreateSpaceCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type CreateSpaceHandler

type CreateSpaceHandler interface {
	Handle(CreateSpaceParams) middleware.Responder
}

CreateSpaceHandler interface for that can handle valid create space params

type CreateSpaceHandlerFunc

type CreateSpaceHandlerFunc func(CreateSpaceParams) middleware.Responder

CreateSpaceHandlerFunc turns a function with the right signature into a create space handler

func (CreateSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type CreateSpaceParams

type CreateSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*An object instance that is serialized and sent as the request body.
	  Required: true
	  In: body
	*/
	Value *models.CreateSpaceRequest
}

CreateSpaceParams contains all the bound params for the create space operation typically these are obtained from a http.Request

swagger:parameters createSpace

func NewCreateSpaceParams

func NewCreateSpaceParams() CreateSpaceParams

NewCreateSpaceParams creates a new CreateSpaceParams object no default values defined in spec.

func (*CreateSpaceParams) BindRequest

func (o *CreateSpaceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewCreateSpaceParams() beforehand.

type CreateSpaceURL

type CreateSpaceURL struct {
	// contains filtered or unexported fields
}

CreateSpaceURL generates an URL for the create space operation

func (*CreateSpaceURL) Build

func (o *CreateSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*CreateSpaceURL) BuildFull

func (o *CreateSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*CreateSpaceURL) Must

func (o *CreateSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*CreateSpaceURL) SetBasePath

func (o *CreateSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*CreateSpaceURL) String

func (o *CreateSpaceURL) String() string

String returns the string representation of the path with query string

func (*CreateSpaceURL) StringFull

func (o *CreateSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*CreateSpaceURL) WithBasePath

func (o *CreateSpaceURL) WithBasePath(bp string) *CreateSpaceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type DeleteSpace

type DeleteSpace struct {
	Context *middleware.Context
	Handler DeleteSpaceHandler
}

DeleteSpace swagger:route DELETE /spaces/{guid} spaces deleteSpace

Delete a Particular Space

curl --insecure -i %s/v2/spaces/{guid} -X DELETE -H 'Authorization: %s'

func NewDeleteSpace

func NewDeleteSpace(ctx *middleware.Context, handler DeleteSpaceHandler) *DeleteSpace

NewDeleteSpace creates a new http.Handler for the delete space operation

func (*DeleteSpace) ServeHTTP

func (o *DeleteSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type DeleteSpaceHandler

type DeleteSpaceHandler interface {
	Handle(DeleteSpaceParams) middleware.Responder
}

DeleteSpaceHandler interface for that can handle valid delete space params

type DeleteSpaceHandlerFunc

type DeleteSpaceHandlerFunc func(DeleteSpaceParams) middleware.Responder

DeleteSpaceHandlerFunc turns a function with the right signature into a delete space handler

func (DeleteSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type DeleteSpaceNoContent

type DeleteSpaceNoContent struct {
}

DeleteSpaceNoContent successful response

swagger:response deleteSpaceNoContent

func NewDeleteSpaceNoContent

func NewDeleteSpaceNoContent() *DeleteSpaceNoContent

NewDeleteSpaceNoContent creates DeleteSpaceNoContent with default headers values

func (*DeleteSpaceNoContent) WriteResponse

func (o *DeleteSpaceNoContent) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DeleteSpaceParams

type DeleteSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid'
	  Required: true
	  In: path
	*/
	GUID string
}

DeleteSpaceParams contains all the bound params for the delete space operation typically these are obtained from a http.Request

swagger:parameters deleteSpace

func NewDeleteSpaceParams

func NewDeleteSpaceParams() DeleteSpaceParams

NewDeleteSpaceParams creates a new DeleteSpaceParams object no default values defined in spec.

func (*DeleteSpaceParams) BindRequest

func (o *DeleteSpaceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewDeleteSpaceParams() beforehand.

type DeleteSpaceURL

type DeleteSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

DeleteSpaceURL generates an URL for the delete space operation

func (*DeleteSpaceURL) Build

func (o *DeleteSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*DeleteSpaceURL) BuildFull

func (o *DeleteSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*DeleteSpaceURL) Must

func (o *DeleteSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*DeleteSpaceURL) SetBasePath

func (o *DeleteSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*DeleteSpaceURL) String

func (o *DeleteSpaceURL) String() string

String returns the string representation of the path with query string

func (*DeleteSpaceURL) StringFull

func (o *DeleteSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*DeleteSpaceURL) WithBasePath

func (o *DeleteSpaceURL) WithBasePath(bp string) *DeleteSpaceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type GetSpaceSummary

type GetSpaceSummary struct {
	Context *middleware.Context
	Handler GetSpaceSummaryHandler
}

GetSpaceSummary swagger:route GET /spaces/{guid}/summary spaces getSpaceSummary

Get Space summary

curl --insecure -i %s/v2/spaces/{guid}/summary -X GET -H 'Authorization: %s'

func NewGetSpaceSummary

func NewGetSpaceSummary(ctx *middleware.Context, handler GetSpaceSummaryHandler) *GetSpaceSummary

NewGetSpaceSummary creates a new http.Handler for the get space summary operation

func (*GetSpaceSummary) ServeHTTP

func (o *GetSpaceSummary) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type GetSpaceSummaryHandler

type GetSpaceSummaryHandler interface {
	Handle(GetSpaceSummaryParams) middleware.Responder
}

GetSpaceSummaryHandler interface for that can handle valid get space summary params

type GetSpaceSummaryHandlerFunc

type GetSpaceSummaryHandlerFunc func(GetSpaceSummaryParams) middleware.Responder

GetSpaceSummaryHandlerFunc turns a function with the right signature into a get space summary handler

func (GetSpaceSummaryHandlerFunc) Handle

Handle executing the request and returning a response

type GetSpaceSummaryOK

type GetSpaceSummaryOK struct {

	/*
	  In: Body
	*/
	Payload *models.GetSpaceSummaryResponseResource `json:"body,omitempty"`
}

GetSpaceSummaryOK successful response

swagger:response getSpaceSummaryOK

func NewGetSpaceSummaryOK

func NewGetSpaceSummaryOK() *GetSpaceSummaryOK

NewGetSpaceSummaryOK creates GetSpaceSummaryOK with default headers values

func (*GetSpaceSummaryOK) SetPayload

SetPayload sets the payload to the get space summary o k response

func (*GetSpaceSummaryOK) WithPayload

WithPayload adds the payload to the get space summary o k response

func (*GetSpaceSummaryOK) WriteResponse

func (o *GetSpaceSummaryOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type GetSpaceSummaryParams

type GetSpaceSummaryParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/summary'
	  Required: true
	  In: path
	*/
	GUID string
}

GetSpaceSummaryParams contains all the bound params for the get space summary operation typically these are obtained from a http.Request

swagger:parameters getSpaceSummary

func NewGetSpaceSummaryParams

func NewGetSpaceSummaryParams() GetSpaceSummaryParams

NewGetSpaceSummaryParams creates a new GetSpaceSummaryParams object no default values defined in spec.

func (*GetSpaceSummaryParams) BindRequest

func (o *GetSpaceSummaryParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewGetSpaceSummaryParams() beforehand.

type GetSpaceSummaryURL

type GetSpaceSummaryURL struct {
	GUID string
	// contains filtered or unexported fields
}

GetSpaceSummaryURL generates an URL for the get space summary operation

func (*GetSpaceSummaryURL) Build

func (o *GetSpaceSummaryURL) Build() (*url.URL, error)

Build a url path and query string

func (*GetSpaceSummaryURL) BuildFull

func (o *GetSpaceSummaryURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*GetSpaceSummaryURL) Must

func (o *GetSpaceSummaryURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*GetSpaceSummaryURL) SetBasePath

func (o *GetSpaceSummaryURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*GetSpaceSummaryURL) String

func (o *GetSpaceSummaryURL) String() string

String returns the string representation of the path with query string

func (*GetSpaceSummaryURL) StringFull

func (o *GetSpaceSummaryURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*GetSpaceSummaryURL) WithBasePath

func (o *GetSpaceSummaryURL) WithBasePath(bp string) *GetSpaceSummaryURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllAppsForSpace

type ListAllAppsForSpace struct {
	Context *middleware.Context
	Handler ListAllAppsForSpaceHandler
}

ListAllAppsForSpace swagger:route GET /spaces/{guid}/apps spaces listAllAppsForSpace

List all Apps for the Space

curl --insecure -i %s/v2/spaces/{guid}/apps -X GET -H 'Authorization: %s'

func NewListAllAppsForSpace

func NewListAllAppsForSpace(ctx *middleware.Context, handler ListAllAppsForSpaceHandler) *ListAllAppsForSpace

NewListAllAppsForSpace creates a new http.Handler for the list all apps for space operation

func (*ListAllAppsForSpace) ServeHTTP

func (o *ListAllAppsForSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type ListAllAppsForSpaceHandler

type ListAllAppsForSpaceHandler interface {
	Handle(ListAllAppsForSpaceParams) middleware.Responder
}

ListAllAppsForSpaceHandler interface for that can handle valid list all apps for space params

type ListAllAppsForSpaceHandlerFunc

type ListAllAppsForSpaceHandlerFunc func(ListAllAppsForSpaceParams) middleware.Responder

ListAllAppsForSpaceHandlerFunc turns a function with the right signature into a list all apps for space handler

func (ListAllAppsForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllAppsForSpaceOK

type ListAllAppsForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllAppsForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllAppsForSpaceOK successful response

swagger:response listAllAppsForSpaceOK

func NewListAllAppsForSpaceOK

func NewListAllAppsForSpaceOK() *ListAllAppsForSpaceOK

NewListAllAppsForSpaceOK creates ListAllAppsForSpaceOK with default headers values

func (*ListAllAppsForSpaceOK) SetPayload

SetPayload sets the payload to the list all apps for space o k response

func (*ListAllAppsForSpaceOK) WithPayload

WithPayload adds the payload to the list all apps for space o k response

func (*ListAllAppsForSpaceOK) WriteResponse

func (o *ListAllAppsForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllAppsForSpaceParams

type ListAllAppsForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/apps'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllAppsForSpaceParams contains all the bound params for the list all apps for space operation typically these are obtained from a http.Request

swagger:parameters listAllAppsForSpace

func NewListAllAppsForSpaceParams

func NewListAllAppsForSpaceParams() ListAllAppsForSpaceParams

NewListAllAppsForSpaceParams creates a new ListAllAppsForSpaceParams object no default values defined in spec.

func (*ListAllAppsForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllAppsForSpaceParams() beforehand.

type ListAllAppsForSpaceURL

type ListAllAppsForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllAppsForSpaceURL generates an URL for the list all apps for space operation

func (*ListAllAppsForSpaceURL) Build

func (o *ListAllAppsForSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllAppsForSpaceURL) BuildFull

func (o *ListAllAppsForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllAppsForSpaceURL) Must

func (o *ListAllAppsForSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllAppsForSpaceURL) SetBasePath

func (o *ListAllAppsForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllAppsForSpaceURL) String

func (o *ListAllAppsForSpaceURL) String() string

String returns the string representation of the path with query string

func (*ListAllAppsForSpaceURL) StringFull

func (o *ListAllAppsForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllAppsForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllAuditorsForSpace

type ListAllAuditorsForSpace struct {
	Context *middleware.Context
	Handler ListAllAuditorsForSpaceHandler
}

ListAllAuditorsForSpace swagger:route GET /spaces/{guid}/auditors spaces listAllAuditorsForSpace

List all Auditors for the Space

curl --insecure -i %s/v2/spaces/{guid}/auditors -X GET -H 'Authorization: %s'

func NewListAllAuditorsForSpace

func NewListAllAuditorsForSpace(ctx *middleware.Context, handler ListAllAuditorsForSpaceHandler) *ListAllAuditorsForSpace

NewListAllAuditorsForSpace creates a new http.Handler for the list all auditors for space operation

func (*ListAllAuditorsForSpace) ServeHTTP

type ListAllAuditorsForSpaceHandler

type ListAllAuditorsForSpaceHandler interface {
	Handle(ListAllAuditorsForSpaceParams) middleware.Responder
}

ListAllAuditorsForSpaceHandler interface for that can handle valid list all auditors for space params

type ListAllAuditorsForSpaceHandlerFunc

type ListAllAuditorsForSpaceHandlerFunc func(ListAllAuditorsForSpaceParams) middleware.Responder

ListAllAuditorsForSpaceHandlerFunc turns a function with the right signature into a list all auditors for space handler

func (ListAllAuditorsForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllAuditorsForSpaceOK

type ListAllAuditorsForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllAuditorsForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllAuditorsForSpaceOK successful response

swagger:response listAllAuditorsForSpaceOK

func NewListAllAuditorsForSpaceOK

func NewListAllAuditorsForSpaceOK() *ListAllAuditorsForSpaceOK

NewListAllAuditorsForSpaceOK creates ListAllAuditorsForSpaceOK with default headers values

func (*ListAllAuditorsForSpaceOK) SetPayload

SetPayload sets the payload to the list all auditors for space o k response

func (*ListAllAuditorsForSpaceOK) WithPayload

WithPayload adds the payload to the list all auditors for space o k response

func (*ListAllAuditorsForSpaceOK) WriteResponse

func (o *ListAllAuditorsForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllAuditorsForSpaceParams

type ListAllAuditorsForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/auditors'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllAuditorsForSpaceParams contains all the bound params for the list all auditors for space operation typically these are obtained from a http.Request

swagger:parameters listAllAuditorsForSpace

func NewListAllAuditorsForSpaceParams

func NewListAllAuditorsForSpaceParams() ListAllAuditorsForSpaceParams

NewListAllAuditorsForSpaceParams creates a new ListAllAuditorsForSpaceParams object no default values defined in spec.

func (*ListAllAuditorsForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllAuditorsForSpaceParams() beforehand.

type ListAllAuditorsForSpaceURL

type ListAllAuditorsForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllAuditorsForSpaceURL generates an URL for the list all auditors for space operation

func (*ListAllAuditorsForSpaceURL) Build

func (o *ListAllAuditorsForSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllAuditorsForSpaceURL) BuildFull

func (o *ListAllAuditorsForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllAuditorsForSpaceURL) Must

func (o *ListAllAuditorsForSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllAuditorsForSpaceURL) SetBasePath

func (o *ListAllAuditorsForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllAuditorsForSpaceURL) String

func (o *ListAllAuditorsForSpaceURL) String() string

String returns the string representation of the path with query string

func (*ListAllAuditorsForSpaceURL) StringFull

func (o *ListAllAuditorsForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllAuditorsForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllDevelopersForSpace

type ListAllDevelopersForSpace struct {
	Context *middleware.Context
	Handler ListAllDevelopersForSpaceHandler
}

ListAllDevelopersForSpace swagger:route GET /spaces/{guid}/developers spaces listAllDevelopersForSpace

List all Developers for the Space

curl --insecure -i %s/v2/spaces/{guid}/developers -X GET -H 'Authorization: %s'

func NewListAllDevelopersForSpace

func NewListAllDevelopersForSpace(ctx *middleware.Context, handler ListAllDevelopersForSpaceHandler) *ListAllDevelopersForSpace

NewListAllDevelopersForSpace creates a new http.Handler for the list all developers for space operation

func (*ListAllDevelopersForSpace) ServeHTTP

type ListAllDevelopersForSpaceHandler

type ListAllDevelopersForSpaceHandler interface {
	Handle(ListAllDevelopersForSpaceParams) middleware.Responder
}

ListAllDevelopersForSpaceHandler interface for that can handle valid list all developers for space params

type ListAllDevelopersForSpaceHandlerFunc

type ListAllDevelopersForSpaceHandlerFunc func(ListAllDevelopersForSpaceParams) middleware.Responder

ListAllDevelopersForSpaceHandlerFunc turns a function with the right signature into a list all developers for space handler

func (ListAllDevelopersForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllDevelopersForSpaceOK

type ListAllDevelopersForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllDevelopersForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllDevelopersForSpaceOK successful response

swagger:response listAllDevelopersForSpaceOK

func NewListAllDevelopersForSpaceOK

func NewListAllDevelopersForSpaceOK() *ListAllDevelopersForSpaceOK

NewListAllDevelopersForSpaceOK creates ListAllDevelopersForSpaceOK with default headers values

func (*ListAllDevelopersForSpaceOK) SetPayload

SetPayload sets the payload to the list all developers for space o k response

func (*ListAllDevelopersForSpaceOK) WithPayload

WithPayload adds the payload to the list all developers for space o k response

func (*ListAllDevelopersForSpaceOK) WriteResponse

func (o *ListAllDevelopersForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllDevelopersForSpaceParams

type ListAllDevelopersForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/developers'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllDevelopersForSpaceParams contains all the bound params for the list all developers for space operation typically these are obtained from a http.Request

swagger:parameters listAllDevelopersForSpace

func NewListAllDevelopersForSpaceParams

func NewListAllDevelopersForSpaceParams() ListAllDevelopersForSpaceParams

NewListAllDevelopersForSpaceParams creates a new ListAllDevelopersForSpaceParams object no default values defined in spec.

func (*ListAllDevelopersForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllDevelopersForSpaceParams() beforehand.

type ListAllDevelopersForSpaceURL

type ListAllDevelopersForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllDevelopersForSpaceURL generates an URL for the list all developers for space operation

func (*ListAllDevelopersForSpaceURL) Build

func (o *ListAllDevelopersForSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllDevelopersForSpaceURL) BuildFull

func (o *ListAllDevelopersForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllDevelopersForSpaceURL) Must

func (o *ListAllDevelopersForSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllDevelopersForSpaceURL) SetBasePath

func (o *ListAllDevelopersForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllDevelopersForSpaceURL) String

String returns the string representation of the path with query string

func (*ListAllDevelopersForSpaceURL) StringFull

func (o *ListAllDevelopersForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllDevelopersForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllDomainsForSpaceDeprecated

type ListAllDomainsForSpaceDeprecated struct {
	Context *middleware.Context
	Handler ListAllDomainsForSpaceDeprecatedHandler
}

ListAllDomainsForSpaceDeprecated swagger:route GET /spaces/{guid}/domains spaces listAllDomainsForSpaceDeprecated

List all Domains for the Space (deprecated)

curl --insecure -i %s/v2/spaces/{guid}/domains -X GET -H 'Authorization: %s'

func NewListAllDomainsForSpaceDeprecated

func NewListAllDomainsForSpaceDeprecated(ctx *middleware.Context, handler ListAllDomainsForSpaceDeprecatedHandler) *ListAllDomainsForSpaceDeprecated

NewListAllDomainsForSpaceDeprecated creates a new http.Handler for the list all domains for space deprecated operation

func (*ListAllDomainsForSpaceDeprecated) ServeHTTP

type ListAllDomainsForSpaceDeprecatedHandler

type ListAllDomainsForSpaceDeprecatedHandler interface {
	Handle(ListAllDomainsForSpaceDeprecatedParams) middleware.Responder
}

ListAllDomainsForSpaceDeprecatedHandler interface for that can handle valid list all domains for space deprecated params

type ListAllDomainsForSpaceDeprecatedHandlerFunc

type ListAllDomainsForSpaceDeprecatedHandlerFunc func(ListAllDomainsForSpaceDeprecatedParams) middleware.Responder

ListAllDomainsForSpaceDeprecatedHandlerFunc turns a function with the right signature into a list all domains for space deprecated handler

func (ListAllDomainsForSpaceDeprecatedHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllDomainsForSpaceDeprecatedOK

type ListAllDomainsForSpaceDeprecatedOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllDomainsForSpaceDeprecatedResponsePaged `json:"body,omitempty"`
}

ListAllDomainsForSpaceDeprecatedOK successful response

swagger:response listAllDomainsForSpaceDeprecatedOK

func NewListAllDomainsForSpaceDeprecatedOK

func NewListAllDomainsForSpaceDeprecatedOK() *ListAllDomainsForSpaceDeprecatedOK

NewListAllDomainsForSpaceDeprecatedOK creates ListAllDomainsForSpaceDeprecatedOK with default headers values

func (*ListAllDomainsForSpaceDeprecatedOK) SetPayload

SetPayload sets the payload to the list all domains for space deprecated o k response

func (*ListAllDomainsForSpaceDeprecatedOK) WithPayload

WithPayload adds the payload to the list all domains for space deprecated o k response

func (*ListAllDomainsForSpaceDeprecatedOK) WriteResponse

WriteResponse to the client

type ListAllDomainsForSpaceDeprecatedParams

type ListAllDomainsForSpaceDeprecatedParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/domains'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllDomainsForSpaceDeprecatedParams contains all the bound params for the list all domains for space deprecated operation typically these are obtained from a http.Request

swagger:parameters listAllDomainsForSpaceDeprecated

func NewListAllDomainsForSpaceDeprecatedParams

func NewListAllDomainsForSpaceDeprecatedParams() ListAllDomainsForSpaceDeprecatedParams

NewListAllDomainsForSpaceDeprecatedParams creates a new ListAllDomainsForSpaceDeprecatedParams object no default values defined in spec.

func (*ListAllDomainsForSpaceDeprecatedParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllDomainsForSpaceDeprecatedParams() beforehand.

type ListAllDomainsForSpaceDeprecatedURL

type ListAllDomainsForSpaceDeprecatedURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllDomainsForSpaceDeprecatedURL generates an URL for the list all domains for space deprecated operation

func (*ListAllDomainsForSpaceDeprecatedURL) Build

Build a url path and query string

func (*ListAllDomainsForSpaceDeprecatedURL) BuildFull

func (o *ListAllDomainsForSpaceDeprecatedURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllDomainsForSpaceDeprecatedURL) Must

Must is a helper function to panic when the url builder returns an error

func (*ListAllDomainsForSpaceDeprecatedURL) SetBasePath

func (o *ListAllDomainsForSpaceDeprecatedURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllDomainsForSpaceDeprecatedURL) String

String returns the string representation of the path with query string

func (*ListAllDomainsForSpaceDeprecatedURL) StringFull

func (o *ListAllDomainsForSpaceDeprecatedURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllDomainsForSpaceDeprecatedURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllEventsForSpace

type ListAllEventsForSpace struct {
	Context *middleware.Context
	Handler ListAllEventsForSpaceHandler
}

ListAllEventsForSpace swagger:route GET /spaces/{guid}/events spaces listAllEventsForSpace

List all Events for the Space

curl --insecure -i %s/v2/spaces/{guid}/events -X GET -H 'Authorization: %s'

func NewListAllEventsForSpace

func NewListAllEventsForSpace(ctx *middleware.Context, handler ListAllEventsForSpaceHandler) *ListAllEventsForSpace

NewListAllEventsForSpace creates a new http.Handler for the list all events for space operation

func (*ListAllEventsForSpace) ServeHTTP

func (o *ListAllEventsForSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type ListAllEventsForSpaceHandler

type ListAllEventsForSpaceHandler interface {
	Handle(ListAllEventsForSpaceParams) middleware.Responder
}

ListAllEventsForSpaceHandler interface for that can handle valid list all events for space params

type ListAllEventsForSpaceHandlerFunc

type ListAllEventsForSpaceHandlerFunc func(ListAllEventsForSpaceParams) middleware.Responder

ListAllEventsForSpaceHandlerFunc turns a function with the right signature into a list all events for space handler

func (ListAllEventsForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllEventsForSpaceOK

type ListAllEventsForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllEventsForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllEventsForSpaceOK successful response

swagger:response listAllEventsForSpaceOK

func NewListAllEventsForSpaceOK

func NewListAllEventsForSpaceOK() *ListAllEventsForSpaceOK

NewListAllEventsForSpaceOK creates ListAllEventsForSpaceOK with default headers values

func (*ListAllEventsForSpaceOK) SetPayload

SetPayload sets the payload to the list all events for space o k response

func (*ListAllEventsForSpaceOK) WithPayload

WithPayload adds the payload to the list all events for space o k response

func (*ListAllEventsForSpaceOK) WriteResponse

func (o *ListAllEventsForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllEventsForSpaceParams

type ListAllEventsForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/events'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllEventsForSpaceParams contains all the bound params for the list all events for space operation typically these are obtained from a http.Request

swagger:parameters listAllEventsForSpace

func NewListAllEventsForSpaceParams

func NewListAllEventsForSpaceParams() ListAllEventsForSpaceParams

NewListAllEventsForSpaceParams creates a new ListAllEventsForSpaceParams object no default values defined in spec.

func (*ListAllEventsForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllEventsForSpaceParams() beforehand.

type ListAllEventsForSpaceURL

type ListAllEventsForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllEventsForSpaceURL generates an URL for the list all events for space operation

func (*ListAllEventsForSpaceURL) Build

func (o *ListAllEventsForSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllEventsForSpaceURL) BuildFull

func (o *ListAllEventsForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllEventsForSpaceURL) Must

func (o *ListAllEventsForSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllEventsForSpaceURL) SetBasePath

func (o *ListAllEventsForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllEventsForSpaceURL) String

func (o *ListAllEventsForSpaceURL) String() string

String returns the string representation of the path with query string

func (*ListAllEventsForSpaceURL) StringFull

func (o *ListAllEventsForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllEventsForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllManagersForSpace

type ListAllManagersForSpace struct {
	Context *middleware.Context
	Handler ListAllManagersForSpaceHandler
}

ListAllManagersForSpace swagger:route GET /spaces/{guid}/managers spaces listAllManagersForSpace

List all Managers for the Space

curl --insecure -i %s/v2/spaces/{guid}/managers -X GET -H 'Authorization: %s'

func NewListAllManagersForSpace

func NewListAllManagersForSpace(ctx *middleware.Context, handler ListAllManagersForSpaceHandler) *ListAllManagersForSpace

NewListAllManagersForSpace creates a new http.Handler for the list all managers for space operation

func (*ListAllManagersForSpace) ServeHTTP

type ListAllManagersForSpaceHandler

type ListAllManagersForSpaceHandler interface {
	Handle(ListAllManagersForSpaceParams) middleware.Responder
}

ListAllManagersForSpaceHandler interface for that can handle valid list all managers for space params

type ListAllManagersForSpaceHandlerFunc

type ListAllManagersForSpaceHandlerFunc func(ListAllManagersForSpaceParams) middleware.Responder

ListAllManagersForSpaceHandlerFunc turns a function with the right signature into a list all managers for space handler

func (ListAllManagersForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllManagersForSpaceOK

type ListAllManagersForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllManagersForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllManagersForSpaceOK successful response

swagger:response listAllManagersForSpaceOK

func NewListAllManagersForSpaceOK

func NewListAllManagersForSpaceOK() *ListAllManagersForSpaceOK

NewListAllManagersForSpaceOK creates ListAllManagersForSpaceOK with default headers values

func (*ListAllManagersForSpaceOK) SetPayload

SetPayload sets the payload to the list all managers for space o k response

func (*ListAllManagersForSpaceOK) WithPayload

WithPayload adds the payload to the list all managers for space o k response

func (*ListAllManagersForSpaceOK) WriteResponse

func (o *ListAllManagersForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllManagersForSpaceParams

type ListAllManagersForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/managers'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllManagersForSpaceParams contains all the bound params for the list all managers for space operation typically these are obtained from a http.Request

swagger:parameters listAllManagersForSpace

func NewListAllManagersForSpaceParams

func NewListAllManagersForSpaceParams() ListAllManagersForSpaceParams

NewListAllManagersForSpaceParams creates a new ListAllManagersForSpaceParams object no default values defined in spec.

func (*ListAllManagersForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllManagersForSpaceParams() beforehand.

type ListAllManagersForSpaceURL

type ListAllManagersForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllManagersForSpaceURL generates an URL for the list all managers for space operation

func (*ListAllManagersForSpaceURL) Build

func (o *ListAllManagersForSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllManagersForSpaceURL) BuildFull

func (o *ListAllManagersForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllManagersForSpaceURL) Must

func (o *ListAllManagersForSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllManagersForSpaceURL) SetBasePath

func (o *ListAllManagersForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllManagersForSpaceURL) String

func (o *ListAllManagersForSpaceURL) String() string

String returns the string representation of the path with query string

func (*ListAllManagersForSpaceURL) StringFull

func (o *ListAllManagersForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllManagersForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllRoutesForSpace

type ListAllRoutesForSpace struct {
	Context *middleware.Context
	Handler ListAllRoutesForSpaceHandler
}

ListAllRoutesForSpace swagger:route GET /spaces/{guid}/routes spaces listAllRoutesForSpace

List all Routes for the Space

curl --insecure -i %s/v2/spaces/{guid}/routes -X GET -H 'Authorization: %s'

func NewListAllRoutesForSpace

func NewListAllRoutesForSpace(ctx *middleware.Context, handler ListAllRoutesForSpaceHandler) *ListAllRoutesForSpace

NewListAllRoutesForSpace creates a new http.Handler for the list all routes for space operation

func (*ListAllRoutesForSpace) ServeHTTP

func (o *ListAllRoutesForSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type ListAllRoutesForSpaceHandler

type ListAllRoutesForSpaceHandler interface {
	Handle(ListAllRoutesForSpaceParams) middleware.Responder
}

ListAllRoutesForSpaceHandler interface for that can handle valid list all routes for space params

type ListAllRoutesForSpaceHandlerFunc

type ListAllRoutesForSpaceHandlerFunc func(ListAllRoutesForSpaceParams) middleware.Responder

ListAllRoutesForSpaceHandlerFunc turns a function with the right signature into a list all routes for space handler

func (ListAllRoutesForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllRoutesForSpaceOK

type ListAllRoutesForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllRoutesForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllRoutesForSpaceOK successful response

swagger:response listAllRoutesForSpaceOK

func NewListAllRoutesForSpaceOK

func NewListAllRoutesForSpaceOK() *ListAllRoutesForSpaceOK

NewListAllRoutesForSpaceOK creates ListAllRoutesForSpaceOK with default headers values

func (*ListAllRoutesForSpaceOK) SetPayload

SetPayload sets the payload to the list all routes for space o k response

func (*ListAllRoutesForSpaceOK) WithPayload

WithPayload adds the payload to the list all routes for space o k response

func (*ListAllRoutesForSpaceOK) WriteResponse

func (o *ListAllRoutesForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllRoutesForSpaceParams

type ListAllRoutesForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/routes'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllRoutesForSpaceParams contains all the bound params for the list all routes for space operation typically these are obtained from a http.Request

swagger:parameters listAllRoutesForSpace

func NewListAllRoutesForSpaceParams

func NewListAllRoutesForSpaceParams() ListAllRoutesForSpaceParams

NewListAllRoutesForSpaceParams creates a new ListAllRoutesForSpaceParams object no default values defined in spec.

func (*ListAllRoutesForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllRoutesForSpaceParams() beforehand.

type ListAllRoutesForSpaceURL

type ListAllRoutesForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllRoutesForSpaceURL generates an URL for the list all routes for space operation

func (*ListAllRoutesForSpaceURL) Build

func (o *ListAllRoutesForSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllRoutesForSpaceURL) BuildFull

func (o *ListAllRoutesForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllRoutesForSpaceURL) Must

func (o *ListAllRoutesForSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllRoutesForSpaceURL) SetBasePath

func (o *ListAllRoutesForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllRoutesForSpaceURL) String

func (o *ListAllRoutesForSpaceURL) String() string

String returns the string representation of the path with query string

func (*ListAllRoutesForSpaceURL) StringFull

func (o *ListAllRoutesForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllRoutesForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllSecurityGroupsForSpace

type ListAllSecurityGroupsForSpace struct {
	Context *middleware.Context
	Handler ListAllSecurityGroupsForSpaceHandler
}

ListAllSecurityGroupsForSpace swagger:route GET /spaces/{guid}/security_groups spaces listAllSecurityGroupsForSpace

List all Security Groups for the Space

curl --insecure -i %s/v2/spaces/{guid}/security_groups -X GET -H 'Authorization: %s'

func NewListAllSecurityGroupsForSpace

func NewListAllSecurityGroupsForSpace(ctx *middleware.Context, handler ListAllSecurityGroupsForSpaceHandler) *ListAllSecurityGroupsForSpace

NewListAllSecurityGroupsForSpace creates a new http.Handler for the list all security groups for space operation

func (*ListAllSecurityGroupsForSpace) ServeHTTP

type ListAllSecurityGroupsForSpaceHandler

type ListAllSecurityGroupsForSpaceHandler interface {
	Handle(ListAllSecurityGroupsForSpaceParams) middleware.Responder
}

ListAllSecurityGroupsForSpaceHandler interface for that can handle valid list all security groups for space params

type ListAllSecurityGroupsForSpaceHandlerFunc

type ListAllSecurityGroupsForSpaceHandlerFunc func(ListAllSecurityGroupsForSpaceParams) middleware.Responder

ListAllSecurityGroupsForSpaceHandlerFunc turns a function with the right signature into a list all security groups for space handler

func (ListAllSecurityGroupsForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllSecurityGroupsForSpaceOK

type ListAllSecurityGroupsForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllSecurityGroupsForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllSecurityGroupsForSpaceOK successful response

swagger:response listAllSecurityGroupsForSpaceOK

func NewListAllSecurityGroupsForSpaceOK

func NewListAllSecurityGroupsForSpaceOK() *ListAllSecurityGroupsForSpaceOK

NewListAllSecurityGroupsForSpaceOK creates ListAllSecurityGroupsForSpaceOK with default headers values

func (*ListAllSecurityGroupsForSpaceOK) SetPayload

SetPayload sets the payload to the list all security groups for space o k response

func (*ListAllSecurityGroupsForSpaceOK) WithPayload

WithPayload adds the payload to the list all security groups for space o k response

func (*ListAllSecurityGroupsForSpaceOK) WriteResponse

func (o *ListAllSecurityGroupsForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllSecurityGroupsForSpaceParams

type ListAllSecurityGroupsForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/security_groups'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllSecurityGroupsForSpaceParams contains all the bound params for the list all security groups for space operation typically these are obtained from a http.Request

swagger:parameters listAllSecurityGroupsForSpace

func NewListAllSecurityGroupsForSpaceParams

func NewListAllSecurityGroupsForSpaceParams() ListAllSecurityGroupsForSpaceParams

NewListAllSecurityGroupsForSpaceParams creates a new ListAllSecurityGroupsForSpaceParams object no default values defined in spec.

func (*ListAllSecurityGroupsForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllSecurityGroupsForSpaceParams() beforehand.

type ListAllSecurityGroupsForSpaceURL

type ListAllSecurityGroupsForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllSecurityGroupsForSpaceURL generates an URL for the list all security groups for space operation

func (*ListAllSecurityGroupsForSpaceURL) Build

Build a url path and query string

func (*ListAllSecurityGroupsForSpaceURL) BuildFull

func (o *ListAllSecurityGroupsForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllSecurityGroupsForSpaceURL) Must

Must is a helper function to panic when the url builder returns an error

func (*ListAllSecurityGroupsForSpaceURL) SetBasePath

func (o *ListAllSecurityGroupsForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllSecurityGroupsForSpaceURL) String

String returns the string representation of the path with query string

func (*ListAllSecurityGroupsForSpaceURL) StringFull

func (o *ListAllSecurityGroupsForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllSecurityGroupsForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllServiceInstancesForSpace

type ListAllServiceInstancesForSpace struct {
	Context *middleware.Context
	Handler ListAllServiceInstancesForSpaceHandler
}

ListAllServiceInstancesForSpace swagger:route GET /spaces/{guid}/service_instances spaces listAllServiceInstancesForSpace

List all Service Instances for the Space

curl --insecure -i %s/v2/spaces/{guid}/service_instances -X GET -H 'Authorization: %s'

func NewListAllServiceInstancesForSpace

func NewListAllServiceInstancesForSpace(ctx *middleware.Context, handler ListAllServiceInstancesForSpaceHandler) *ListAllServiceInstancesForSpace

NewListAllServiceInstancesForSpace creates a new http.Handler for the list all service instances for space operation

func (*ListAllServiceInstancesForSpace) ServeHTTP

type ListAllServiceInstancesForSpaceHandler

type ListAllServiceInstancesForSpaceHandler interface {
	Handle(ListAllServiceInstancesForSpaceParams) middleware.Responder
}

ListAllServiceInstancesForSpaceHandler interface for that can handle valid list all service instances for space params

type ListAllServiceInstancesForSpaceHandlerFunc

type ListAllServiceInstancesForSpaceHandlerFunc func(ListAllServiceInstancesForSpaceParams) middleware.Responder

ListAllServiceInstancesForSpaceHandlerFunc turns a function with the right signature into a list all service instances for space handler

func (ListAllServiceInstancesForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllServiceInstancesForSpaceOK

type ListAllServiceInstancesForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllServiceInstancesForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllServiceInstancesForSpaceOK successful response

swagger:response listAllServiceInstancesForSpaceOK

func NewListAllServiceInstancesForSpaceOK

func NewListAllServiceInstancesForSpaceOK() *ListAllServiceInstancesForSpaceOK

NewListAllServiceInstancesForSpaceOK creates ListAllServiceInstancesForSpaceOK with default headers values

func (*ListAllServiceInstancesForSpaceOK) SetPayload

SetPayload sets the payload to the list all service instances for space o k response

func (*ListAllServiceInstancesForSpaceOK) WithPayload

WithPayload adds the payload to the list all service instances for space o k response

func (*ListAllServiceInstancesForSpaceOK) WriteResponse

func (o *ListAllServiceInstancesForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllServiceInstancesForSpaceParams

type ListAllServiceInstancesForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/service_instances'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllServiceInstancesForSpaceParams contains all the bound params for the list all service instances for space operation typically these are obtained from a http.Request

swagger:parameters listAllServiceInstancesForSpace

func NewListAllServiceInstancesForSpaceParams

func NewListAllServiceInstancesForSpaceParams() ListAllServiceInstancesForSpaceParams

NewListAllServiceInstancesForSpaceParams creates a new ListAllServiceInstancesForSpaceParams object no default values defined in spec.

func (*ListAllServiceInstancesForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllServiceInstancesForSpaceParams() beforehand.

type ListAllServiceInstancesForSpaceURL

type ListAllServiceInstancesForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllServiceInstancesForSpaceURL generates an URL for the list all service instances for space operation

func (*ListAllServiceInstancesForSpaceURL) Build

Build a url path and query string

func (*ListAllServiceInstancesForSpaceURL) BuildFull

func (o *ListAllServiceInstancesForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllServiceInstancesForSpaceURL) Must

Must is a helper function to panic when the url builder returns an error

func (*ListAllServiceInstancesForSpaceURL) SetBasePath

func (o *ListAllServiceInstancesForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllServiceInstancesForSpaceURL) String

String returns the string representation of the path with query string

func (*ListAllServiceInstancesForSpaceURL) StringFull

func (o *ListAllServiceInstancesForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllServiceInstancesForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllServicesForSpace

type ListAllServicesForSpace struct {
	Context *middleware.Context
	Handler ListAllServicesForSpaceHandler
}

ListAllServicesForSpace swagger:route GET /spaces/{guid}/services spaces listAllServicesForSpace

List all Services for the Space

curl --insecure -i %s/v2/spaces/{guid}/services -X GET -H 'Authorization: %s'

func NewListAllServicesForSpace

func NewListAllServicesForSpace(ctx *middleware.Context, handler ListAllServicesForSpaceHandler) *ListAllServicesForSpace

NewListAllServicesForSpace creates a new http.Handler for the list all services for space operation

func (*ListAllServicesForSpace) ServeHTTP

type ListAllServicesForSpaceHandler

type ListAllServicesForSpaceHandler interface {
	Handle(ListAllServicesForSpaceParams) middleware.Responder
}

ListAllServicesForSpaceHandler interface for that can handle valid list all services for space params

type ListAllServicesForSpaceHandlerFunc

type ListAllServicesForSpaceHandlerFunc func(ListAllServicesForSpaceParams) middleware.Responder

ListAllServicesForSpaceHandlerFunc turns a function with the right signature into a list all services for space handler

func (ListAllServicesForSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllServicesForSpaceOK

type ListAllServicesForSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllServicesForSpaceResponsePaged `json:"body,omitempty"`
}

ListAllServicesForSpaceOK successful response

swagger:response listAllServicesForSpaceOK

func NewListAllServicesForSpaceOK

func NewListAllServicesForSpaceOK() *ListAllServicesForSpaceOK

NewListAllServicesForSpaceOK creates ListAllServicesForSpaceOK with default headers values

func (*ListAllServicesForSpaceOK) SetPayload

SetPayload sets the payload to the list all services for space o k response

func (*ListAllServicesForSpaceOK) WithPayload

WithPayload adds the payload to the list all services for space o k response

func (*ListAllServicesForSpaceOK) WriteResponse

func (o *ListAllServicesForSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllServicesForSpaceParams

type ListAllServicesForSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/services'
	  Required: true
	  In: path
	*/
	GUID string
}

ListAllServicesForSpaceParams contains all the bound params for the list all services for space operation typically these are obtained from a http.Request

swagger:parameters listAllServicesForSpace

func NewListAllServicesForSpaceParams

func NewListAllServicesForSpaceParams() ListAllServicesForSpaceParams

NewListAllServicesForSpaceParams creates a new ListAllServicesForSpaceParams object no default values defined in spec.

func (*ListAllServicesForSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllServicesForSpaceParams() beforehand.

type ListAllServicesForSpaceURL

type ListAllServicesForSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

ListAllServicesForSpaceURL generates an URL for the list all services for space operation

func (*ListAllServicesForSpaceURL) Build

func (o *ListAllServicesForSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllServicesForSpaceURL) BuildFull

func (o *ListAllServicesForSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllServicesForSpaceURL) Must

func (o *ListAllServicesForSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllServicesForSpaceURL) SetBasePath

func (o *ListAllServicesForSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllServicesForSpaceURL) String

func (o *ListAllServicesForSpaceURL) String() string

String returns the string representation of the path with query string

func (*ListAllServicesForSpaceURL) StringFull

func (o *ListAllServicesForSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllServicesForSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListAllSpaces

type ListAllSpaces struct {
	Context *middleware.Context
	Handler ListAllSpacesHandler
}

ListAllSpaces swagger:route GET /spaces spaces listAllSpaces

List all Spaces

curl --insecure -i %s/v2/spaces -X GET -H 'Authorization: %s'

func NewListAllSpaces

func NewListAllSpaces(ctx *middleware.Context, handler ListAllSpacesHandler) *ListAllSpaces

NewListAllSpaces creates a new http.Handler for the list all spaces operation

func (*ListAllSpaces) ServeHTTP

func (o *ListAllSpaces) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type ListAllSpacesHandler

type ListAllSpacesHandler interface {
	Handle(ListAllSpacesParams) middleware.Responder
}

ListAllSpacesHandler interface for that can handle valid list all spaces params

type ListAllSpacesHandlerFunc

type ListAllSpacesHandlerFunc func(ListAllSpacesParams) middleware.Responder

ListAllSpacesHandlerFunc turns a function with the right signature into a list all spaces handler

func (ListAllSpacesHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllSpacesOK

type ListAllSpacesOK struct {

	/*
	  In: Body
	*/
	Payload *models.ListAllSpacesResponsePaged `json:"body,omitempty"`
}

ListAllSpacesOK successful response

swagger:response listAllSpacesOK

func NewListAllSpacesOK

func NewListAllSpacesOK() *ListAllSpacesOK

NewListAllSpacesOK creates ListAllSpacesOK with default headers values

func (*ListAllSpacesOK) SetPayload

func (o *ListAllSpacesOK) SetPayload(payload *models.ListAllSpacesResponsePaged)

SetPayload sets the payload to the list all spaces o k response

func (*ListAllSpacesOK) WithPayload

WithPayload adds the payload to the list all spaces o k response

func (*ListAllSpacesOK) WriteResponse

func (o *ListAllSpacesOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListAllSpacesParams

type ListAllSpacesParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`
}

ListAllSpacesParams contains all the bound params for the list all spaces operation typically these are obtained from a http.Request

swagger:parameters listAllSpaces

func NewListAllSpacesParams

func NewListAllSpacesParams() ListAllSpacesParams

NewListAllSpacesParams creates a new ListAllSpacesParams object no default values defined in spec.

func (*ListAllSpacesParams) BindRequest

func (o *ListAllSpacesParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListAllSpacesParams() beforehand.

type ListAllSpacesURL

type ListAllSpacesURL struct {
	// contains filtered or unexported fields
}

ListAllSpacesURL generates an URL for the list all spaces operation

func (*ListAllSpacesURL) Build

func (o *ListAllSpacesURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListAllSpacesURL) BuildFull

func (o *ListAllSpacesURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListAllSpacesURL) Must

func (o *ListAllSpacesURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListAllSpacesURL) SetBasePath

func (o *ListAllSpacesURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListAllSpacesURL) String

func (o *ListAllSpacesURL) String() string

String returns the string representation of the path with query string

func (*ListAllSpacesURL) StringFull

func (o *ListAllSpacesURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListAllSpacesURL) WithBasePath

func (o *ListAllSpacesURL) WithBasePath(bp string) *ListAllSpacesURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type RemoveAuditorFromSpace

type RemoveAuditorFromSpace struct {
	Context *middleware.Context
	Handler RemoveAuditorFromSpaceHandler
}

RemoveAuditorFromSpace swagger:route DELETE /spaces/{guid}/auditors/{auditor_guid} spaces removeAuditorFromSpace

Remove Auditor from the Space

curl --insecure -i %s/v2/spaces/{guid}/auditors/{auditor_guid} -X DELETE -H 'Authorization: %s'

func NewRemoveAuditorFromSpace

func NewRemoveAuditorFromSpace(ctx *middleware.Context, handler RemoveAuditorFromSpaceHandler) *RemoveAuditorFromSpace

NewRemoveAuditorFromSpace creates a new http.Handler for the remove auditor from space operation

func (*RemoveAuditorFromSpace) ServeHTTP

func (o *RemoveAuditorFromSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type RemoveAuditorFromSpaceCreated

type RemoveAuditorFromSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.RemoveAuditorFromSpaceResponseResource `json:"body,omitempty"`
}

RemoveAuditorFromSpaceCreated successful response

swagger:response removeAuditorFromSpaceCreated

func NewRemoveAuditorFromSpaceCreated

func NewRemoveAuditorFromSpaceCreated() *RemoveAuditorFromSpaceCreated

NewRemoveAuditorFromSpaceCreated creates RemoveAuditorFromSpaceCreated with default headers values

func (*RemoveAuditorFromSpaceCreated) SetPayload

SetPayload sets the payload to the remove auditor from space created response

func (*RemoveAuditorFromSpaceCreated) WithPayload

WithPayload adds the payload to the remove auditor from space created response

func (*RemoveAuditorFromSpaceCreated) WriteResponse

func (o *RemoveAuditorFromSpaceCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type RemoveAuditorFromSpaceHandler

type RemoveAuditorFromSpaceHandler interface {
	Handle(RemoveAuditorFromSpaceParams) middleware.Responder
}

RemoveAuditorFromSpaceHandler interface for that can handle valid remove auditor from space params

type RemoveAuditorFromSpaceHandlerFunc

type RemoveAuditorFromSpaceHandlerFunc func(RemoveAuditorFromSpaceParams) middleware.Responder

RemoveAuditorFromSpaceHandlerFunc turns a function with the right signature into a remove auditor from space handler

func (RemoveAuditorFromSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveAuditorFromSpaceParams

type RemoveAuditorFromSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The auditor_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/auditors/:auditor_guid'
	  Required: true
	  In: path
	*/
	AuditorGUID string
	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/auditors/:auditor_guid'
	  Required: true
	  In: path
	*/
	GUID string
}

RemoveAuditorFromSpaceParams contains all the bound params for the remove auditor from space operation typically these are obtained from a http.Request

swagger:parameters removeAuditorFromSpace

func NewRemoveAuditorFromSpaceParams

func NewRemoveAuditorFromSpaceParams() RemoveAuditorFromSpaceParams

NewRemoveAuditorFromSpaceParams creates a new RemoveAuditorFromSpaceParams object no default values defined in spec.

func (*RemoveAuditorFromSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewRemoveAuditorFromSpaceParams() beforehand.

type RemoveAuditorFromSpaceURL

type RemoveAuditorFromSpaceURL struct {
	AuditorGUID string
	GUID        string
	// contains filtered or unexported fields
}

RemoveAuditorFromSpaceURL generates an URL for the remove auditor from space operation

func (*RemoveAuditorFromSpaceURL) Build

func (o *RemoveAuditorFromSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*RemoveAuditorFromSpaceURL) BuildFull

func (o *RemoveAuditorFromSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*RemoveAuditorFromSpaceURL) Must

func (o *RemoveAuditorFromSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*RemoveAuditorFromSpaceURL) SetBasePath

func (o *RemoveAuditorFromSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*RemoveAuditorFromSpaceURL) String

func (o *RemoveAuditorFromSpaceURL) String() string

String returns the string representation of the path with query string

func (*RemoveAuditorFromSpaceURL) StringFull

func (o *RemoveAuditorFromSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*RemoveAuditorFromSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type RemoveDeveloperFromSpace

type RemoveDeveloperFromSpace struct {
	Context *middleware.Context
	Handler RemoveDeveloperFromSpaceHandler
}

RemoveDeveloperFromSpace swagger:route DELETE /spaces/{guid}/developers/{developer_guid} spaces removeDeveloperFromSpace

Remove Developer from the Space

curl --insecure -i %s/v2/spaces/{guid}/developers/{developer_guid} -X DELETE -H 'Authorization: %s'

func NewRemoveDeveloperFromSpace

func NewRemoveDeveloperFromSpace(ctx *middleware.Context, handler RemoveDeveloperFromSpaceHandler) *RemoveDeveloperFromSpace

NewRemoveDeveloperFromSpace creates a new http.Handler for the remove developer from space operation

func (*RemoveDeveloperFromSpace) ServeHTTP

type RemoveDeveloperFromSpaceCreated

type RemoveDeveloperFromSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.RemoveDeveloperFromSpaceResponseResource `json:"body,omitempty"`
}

RemoveDeveloperFromSpaceCreated successful response

swagger:response removeDeveloperFromSpaceCreated

func NewRemoveDeveloperFromSpaceCreated

func NewRemoveDeveloperFromSpaceCreated() *RemoveDeveloperFromSpaceCreated

NewRemoveDeveloperFromSpaceCreated creates RemoveDeveloperFromSpaceCreated with default headers values

func (*RemoveDeveloperFromSpaceCreated) SetPayload

SetPayload sets the payload to the remove developer from space created response

func (*RemoveDeveloperFromSpaceCreated) WithPayload

WithPayload adds the payload to the remove developer from space created response

func (*RemoveDeveloperFromSpaceCreated) WriteResponse

func (o *RemoveDeveloperFromSpaceCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type RemoveDeveloperFromSpaceHandler

type RemoveDeveloperFromSpaceHandler interface {
	Handle(RemoveDeveloperFromSpaceParams) middleware.Responder
}

RemoveDeveloperFromSpaceHandler interface for that can handle valid remove developer from space params

type RemoveDeveloperFromSpaceHandlerFunc

type RemoveDeveloperFromSpaceHandlerFunc func(RemoveDeveloperFromSpaceParams) middleware.Responder

RemoveDeveloperFromSpaceHandlerFunc turns a function with the right signature into a remove developer from space handler

func (RemoveDeveloperFromSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveDeveloperFromSpaceParams

type RemoveDeveloperFromSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The developer_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/developers/:developer_guid'
	  Required: true
	  In: path
	*/
	DeveloperGUID string
	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/developers/:developer_guid'
	  Required: true
	  In: path
	*/
	GUID string
}

RemoveDeveloperFromSpaceParams contains all the bound params for the remove developer from space operation typically these are obtained from a http.Request

swagger:parameters removeDeveloperFromSpace

func NewRemoveDeveloperFromSpaceParams

func NewRemoveDeveloperFromSpaceParams() RemoveDeveloperFromSpaceParams

NewRemoveDeveloperFromSpaceParams creates a new RemoveDeveloperFromSpaceParams object no default values defined in spec.

func (*RemoveDeveloperFromSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewRemoveDeveloperFromSpaceParams() beforehand.

type RemoveDeveloperFromSpaceURL

type RemoveDeveloperFromSpaceURL struct {
	DeveloperGUID string
	GUID          string
	// contains filtered or unexported fields
}

RemoveDeveloperFromSpaceURL generates an URL for the remove developer from space operation

func (*RemoveDeveloperFromSpaceURL) Build

func (o *RemoveDeveloperFromSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*RemoveDeveloperFromSpaceURL) BuildFull

func (o *RemoveDeveloperFromSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*RemoveDeveloperFromSpaceURL) Must

func (o *RemoveDeveloperFromSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*RemoveDeveloperFromSpaceURL) SetBasePath

func (o *RemoveDeveloperFromSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*RemoveDeveloperFromSpaceURL) String

func (o *RemoveDeveloperFromSpaceURL) String() string

String returns the string representation of the path with query string

func (*RemoveDeveloperFromSpaceURL) StringFull

func (o *RemoveDeveloperFromSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*RemoveDeveloperFromSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type RemoveManagerFromSpace

type RemoveManagerFromSpace struct {
	Context *middleware.Context
	Handler RemoveManagerFromSpaceHandler
}

RemoveManagerFromSpace swagger:route DELETE /spaces/{guid}/managers/{manager_guid} spaces removeManagerFromSpace

Remove Manager from the Space

curl --insecure -i %s/v2/spaces/{guid}/managers/{manager_guid} -X DELETE -H 'Authorization: %s'

func NewRemoveManagerFromSpace

func NewRemoveManagerFromSpace(ctx *middleware.Context, handler RemoveManagerFromSpaceHandler) *RemoveManagerFromSpace

NewRemoveManagerFromSpace creates a new http.Handler for the remove manager from space operation

func (*RemoveManagerFromSpace) ServeHTTP

func (o *RemoveManagerFromSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type RemoveManagerFromSpaceCreated

type RemoveManagerFromSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.RemoveManagerFromSpaceResponseResource `json:"body,omitempty"`
}

RemoveManagerFromSpaceCreated successful response

swagger:response removeManagerFromSpaceCreated

func NewRemoveManagerFromSpaceCreated

func NewRemoveManagerFromSpaceCreated() *RemoveManagerFromSpaceCreated

NewRemoveManagerFromSpaceCreated creates RemoveManagerFromSpaceCreated with default headers values

func (*RemoveManagerFromSpaceCreated) SetPayload

SetPayload sets the payload to the remove manager from space created response

func (*RemoveManagerFromSpaceCreated) WithPayload

WithPayload adds the payload to the remove manager from space created response

func (*RemoveManagerFromSpaceCreated) WriteResponse

func (o *RemoveManagerFromSpaceCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type RemoveManagerFromSpaceHandler

type RemoveManagerFromSpaceHandler interface {
	Handle(RemoveManagerFromSpaceParams) middleware.Responder
}

RemoveManagerFromSpaceHandler interface for that can handle valid remove manager from space params

type RemoveManagerFromSpaceHandlerFunc

type RemoveManagerFromSpaceHandlerFunc func(RemoveManagerFromSpaceParams) middleware.Responder

RemoveManagerFromSpaceHandlerFunc turns a function with the right signature into a remove manager from space handler

func (RemoveManagerFromSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveManagerFromSpaceParams

type RemoveManagerFromSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/managers/:manager_guid'
	  Required: true
	  In: path
	*/
	GUID string
	/*The manager_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/managers/:manager_guid'
	  Required: true
	  In: path
	*/
	ManagerGUID string
}

RemoveManagerFromSpaceParams contains all the bound params for the remove manager from space operation typically these are obtained from a http.Request

swagger:parameters removeManagerFromSpace

func NewRemoveManagerFromSpaceParams

func NewRemoveManagerFromSpaceParams() RemoveManagerFromSpaceParams

NewRemoveManagerFromSpaceParams creates a new RemoveManagerFromSpaceParams object no default values defined in spec.

func (*RemoveManagerFromSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewRemoveManagerFromSpaceParams() beforehand.

type RemoveManagerFromSpaceURL

type RemoveManagerFromSpaceURL struct {
	GUID        string
	ManagerGUID string
	// contains filtered or unexported fields
}

RemoveManagerFromSpaceURL generates an URL for the remove manager from space operation

func (*RemoveManagerFromSpaceURL) Build

func (o *RemoveManagerFromSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*RemoveManagerFromSpaceURL) BuildFull

func (o *RemoveManagerFromSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*RemoveManagerFromSpaceURL) Must

func (o *RemoveManagerFromSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*RemoveManagerFromSpaceURL) SetBasePath

func (o *RemoveManagerFromSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*RemoveManagerFromSpaceURL) String

func (o *RemoveManagerFromSpaceURL) String() string

String returns the string representation of the path with query string

func (*RemoveManagerFromSpaceURL) StringFull

func (o *RemoveManagerFromSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*RemoveManagerFromSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type RemoveSecurityGroupFromSpace

type RemoveSecurityGroupFromSpace struct {
	Context *middleware.Context
	Handler RemoveSecurityGroupFromSpaceHandler
}

RemoveSecurityGroupFromSpace swagger:route DELETE /spaces/{guid}/security_groups/{security_group_guid} spaces removeSecurityGroupFromSpace

Remove Security Group from the Space

curl --insecure -i %s/v2/spaces/{guid}/security_groups/{security_group_guid} -X DELETE -H 'Authorization: %s'

func NewRemoveSecurityGroupFromSpace

func NewRemoveSecurityGroupFromSpace(ctx *middleware.Context, handler RemoveSecurityGroupFromSpaceHandler) *RemoveSecurityGroupFromSpace

NewRemoveSecurityGroupFromSpace creates a new http.Handler for the remove security group from space operation

func (*RemoveSecurityGroupFromSpace) ServeHTTP

type RemoveSecurityGroupFromSpaceCreated

type RemoveSecurityGroupFromSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.RemoveSecurityGroupFromSpaceResponseResource `json:"body,omitempty"`
}

RemoveSecurityGroupFromSpaceCreated successful response

swagger:response removeSecurityGroupFromSpaceCreated

func NewRemoveSecurityGroupFromSpaceCreated

func NewRemoveSecurityGroupFromSpaceCreated() *RemoveSecurityGroupFromSpaceCreated

NewRemoveSecurityGroupFromSpaceCreated creates RemoveSecurityGroupFromSpaceCreated with default headers values

func (*RemoveSecurityGroupFromSpaceCreated) SetPayload

SetPayload sets the payload to the remove security group from space created response

func (*RemoveSecurityGroupFromSpaceCreated) WithPayload

WithPayload adds the payload to the remove security group from space created response

func (*RemoveSecurityGroupFromSpaceCreated) WriteResponse

WriteResponse to the client

type RemoveSecurityGroupFromSpaceHandler

type RemoveSecurityGroupFromSpaceHandler interface {
	Handle(RemoveSecurityGroupFromSpaceParams) middleware.Responder
}

RemoveSecurityGroupFromSpaceHandler interface for that can handle valid remove security group from space params

type RemoveSecurityGroupFromSpaceHandlerFunc

type RemoveSecurityGroupFromSpaceHandlerFunc func(RemoveSecurityGroupFromSpaceParams) middleware.Responder

RemoveSecurityGroupFromSpaceHandlerFunc turns a function with the right signature into a remove security group from space handler

func (RemoveSecurityGroupFromSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveSecurityGroupFromSpaceParams

type RemoveSecurityGroupFromSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid/security_groups/:security_group_guid'
	  Required: true
	  In: path
	*/
	GUID string
	/*The security_group_guid parameter is used as a part of the request URL: '/v2/spaces/:guid/security_groups/:security_group_guid'
	  Required: true
	  In: path
	*/
	SecurityGroupGUID string
}

RemoveSecurityGroupFromSpaceParams contains all the bound params for the remove security group from space operation typically these are obtained from a http.Request

swagger:parameters removeSecurityGroupFromSpace

func NewRemoveSecurityGroupFromSpaceParams

func NewRemoveSecurityGroupFromSpaceParams() RemoveSecurityGroupFromSpaceParams

NewRemoveSecurityGroupFromSpaceParams creates a new RemoveSecurityGroupFromSpaceParams object no default values defined in spec.

func (*RemoveSecurityGroupFromSpaceParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewRemoveSecurityGroupFromSpaceParams() beforehand.

type RemoveSecurityGroupFromSpaceURL

type RemoveSecurityGroupFromSpaceURL struct {
	GUID              string
	SecurityGroupGUID string
	// contains filtered or unexported fields
}

RemoveSecurityGroupFromSpaceURL generates an URL for the remove security group from space operation

func (*RemoveSecurityGroupFromSpaceURL) Build

Build a url path and query string

func (*RemoveSecurityGroupFromSpaceURL) BuildFull

func (o *RemoveSecurityGroupFromSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*RemoveSecurityGroupFromSpaceURL) Must

func (o *RemoveSecurityGroupFromSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*RemoveSecurityGroupFromSpaceURL) SetBasePath

func (o *RemoveSecurityGroupFromSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*RemoveSecurityGroupFromSpaceURL) String

String returns the string representation of the path with query string

func (*RemoveSecurityGroupFromSpaceURL) StringFull

func (o *RemoveSecurityGroupFromSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*RemoveSecurityGroupFromSpaceURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type RetrieveSpace

type RetrieveSpace struct {
	Context *middleware.Context
	Handler RetrieveSpaceHandler
}

RetrieveSpace swagger:route GET /spaces/{guid} spaces retrieveSpace

Retrieve a Particular Space

curl --insecure -i %s/v2/spaces/{guid} -X GET -H 'Authorization: %s'

func NewRetrieveSpace

func NewRetrieveSpace(ctx *middleware.Context, handler RetrieveSpaceHandler) *RetrieveSpace

NewRetrieveSpace creates a new http.Handler for the retrieve space operation

func (*RetrieveSpace) ServeHTTP

func (o *RetrieveSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type RetrieveSpaceHandler

type RetrieveSpaceHandler interface {
	Handle(RetrieveSpaceParams) middleware.Responder
}

RetrieveSpaceHandler interface for that can handle valid retrieve space params

type RetrieveSpaceHandlerFunc

type RetrieveSpaceHandlerFunc func(RetrieveSpaceParams) middleware.Responder

RetrieveSpaceHandlerFunc turns a function with the right signature into a retrieve space handler

func (RetrieveSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type RetrieveSpaceOK

type RetrieveSpaceOK struct {

	/*
	  In: Body
	*/
	Payload *models.RetrieveSpaceResponseResource `json:"body,omitempty"`
}

RetrieveSpaceOK successful response

swagger:response retrieveSpaceOK

func NewRetrieveSpaceOK

func NewRetrieveSpaceOK() *RetrieveSpaceOK

NewRetrieveSpaceOK creates RetrieveSpaceOK with default headers values

func (*RetrieveSpaceOK) SetPayload

func (o *RetrieveSpaceOK) SetPayload(payload *models.RetrieveSpaceResponseResource)

SetPayload sets the payload to the retrieve space o k response

func (*RetrieveSpaceOK) WithPayload

WithPayload adds the payload to the retrieve space o k response

func (*RetrieveSpaceOK) WriteResponse

func (o *RetrieveSpaceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type RetrieveSpaceParams

type RetrieveSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid'
	  Required: true
	  In: path
	*/
	GUID string
}

RetrieveSpaceParams contains all the bound params for the retrieve space operation typically these are obtained from a http.Request

swagger:parameters retrieveSpace

func NewRetrieveSpaceParams

func NewRetrieveSpaceParams() RetrieveSpaceParams

NewRetrieveSpaceParams creates a new RetrieveSpaceParams object no default values defined in spec.

func (*RetrieveSpaceParams) BindRequest

func (o *RetrieveSpaceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewRetrieveSpaceParams() beforehand.

type RetrieveSpaceURL

type RetrieveSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

RetrieveSpaceURL generates an URL for the retrieve space operation

func (*RetrieveSpaceURL) Build

func (o *RetrieveSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*RetrieveSpaceURL) BuildFull

func (o *RetrieveSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*RetrieveSpaceURL) Must

func (o *RetrieveSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*RetrieveSpaceURL) SetBasePath

func (o *RetrieveSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*RetrieveSpaceURL) String

func (o *RetrieveSpaceURL) String() string

String returns the string representation of the path with query string

func (*RetrieveSpaceURL) StringFull

func (o *RetrieveSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*RetrieveSpaceURL) WithBasePath

func (o *RetrieveSpaceURL) WithBasePath(bp string) *RetrieveSpaceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type UpdateSpace

type UpdateSpace struct {
	Context *middleware.Context
	Handler UpdateSpaceHandler
}

UpdateSpace swagger:route PUT /spaces/{guid} spaces updateSpace

Update a Space

curl --insecure -i %s/v2/spaces/{guid} -X PUT -H 'Authorization: %s' -d '%s'

func NewUpdateSpace

func NewUpdateSpace(ctx *middleware.Context, handler UpdateSpaceHandler) *UpdateSpace

NewUpdateSpace creates a new http.Handler for the update space operation

func (*UpdateSpace) ServeHTTP

func (o *UpdateSpace) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type UpdateSpaceCreated

type UpdateSpaceCreated struct {

	/*
	  In: Body
	*/
	Payload *models.UpdateSpaceResponseResource `json:"body,omitempty"`
}

UpdateSpaceCreated successful response

swagger:response updateSpaceCreated

func NewUpdateSpaceCreated

func NewUpdateSpaceCreated() *UpdateSpaceCreated

NewUpdateSpaceCreated creates UpdateSpaceCreated with default headers values

func (*UpdateSpaceCreated) SetPayload

func (o *UpdateSpaceCreated) SetPayload(payload *models.UpdateSpaceResponseResource)

SetPayload sets the payload to the update space created response

func (*UpdateSpaceCreated) WithPayload

WithPayload adds the payload to the update space created response

func (*UpdateSpaceCreated) WriteResponse

func (o *UpdateSpaceCreated) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type UpdateSpaceHandler

type UpdateSpaceHandler interface {
	Handle(UpdateSpaceParams) middleware.Responder
}

UpdateSpaceHandler interface for that can handle valid update space params

type UpdateSpaceHandlerFunc

type UpdateSpaceHandlerFunc func(UpdateSpaceParams) middleware.Responder

UpdateSpaceHandlerFunc turns a function with the right signature into a update space handler

func (UpdateSpaceHandlerFunc) Handle

Handle executing the request and returning a response

type UpdateSpaceParams

type UpdateSpaceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The guid parameter is used as a part of the request URL: '/v2/spaces/:guid'
	  Required: true
	  In: path
	*/
	GUID string
	/*An object instance that is serialized and sent as the request body.
	  Required: true
	  In: body
	*/
	Value *models.UpdateSpaceRequest
}

UpdateSpaceParams contains all the bound params for the update space operation typically these are obtained from a http.Request

swagger:parameters updateSpace

func NewUpdateSpaceParams

func NewUpdateSpaceParams() UpdateSpaceParams

NewUpdateSpaceParams creates a new UpdateSpaceParams object no default values defined in spec.

func (*UpdateSpaceParams) BindRequest

func (o *UpdateSpaceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewUpdateSpaceParams() beforehand.

type UpdateSpaceURL

type UpdateSpaceURL struct {
	GUID string
	// contains filtered or unexported fields
}

UpdateSpaceURL generates an URL for the update space operation

func (*UpdateSpaceURL) Build

func (o *UpdateSpaceURL) Build() (*url.URL, error)

Build a url path and query string

func (*UpdateSpaceURL) BuildFull

func (o *UpdateSpaceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*UpdateSpaceURL) Must

func (o *UpdateSpaceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*UpdateSpaceURL) SetBasePath

func (o *UpdateSpaceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*UpdateSpaceURL) String

func (o *UpdateSpaceURL) String() string

String returns the string representation of the path with query string

func (*UpdateSpaceURL) StringFull

func (o *UpdateSpaceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*UpdateSpaceURL) WithBasePath

func (o *UpdateSpaceURL) WithBasePath(bp string) *UpdateSpaceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL