organizations

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 AssociateAuditorWithOrganizationCreatedCode int = 201

AssociateAuditorWithOrganizationCreatedCode is the HTTP code returned for type AssociateAuditorWithOrganizationCreated

View Source
const AssociateBillingManagerWithOrganizationCreatedCode int = 201

AssociateBillingManagerWithOrganizationCreatedCode is the HTTP code returned for type AssociateBillingManagerWithOrganizationCreated

View Source
const AssociateManagerWithOrganizationCreatedCode int = 201

AssociateManagerWithOrganizationCreatedCode is the HTTP code returned for type AssociateManagerWithOrganizationCreated

View Source
const AssociateUserWithOrganizationCreatedCode int = 201

AssociateUserWithOrganizationCreatedCode is the HTTP code returned for type AssociateUserWithOrganizationCreated

View Source
const CreateOrganizationCreatedCode int = 201

CreateOrganizationCreatedCode is the HTTP code returned for type CreateOrganizationCreated

View Source
const DeleteOrganizationNoContentCode int = 204

DeleteOrganizationNoContentCode is the HTTP code returned for type DeleteOrganizationNoContent

View Source
const GetOrganizationSummaryOKCode int = 200

GetOrganizationSummaryOKCode is the HTTP code returned for type GetOrganizationSummaryOK

View Source
const ListAllAuditorsForOrganizationOKCode int = 200

ListAllAuditorsForOrganizationOKCode is the HTTP code returned for type ListAllAuditorsForOrganizationOK

View Source
const ListAllBillingManagersForOrganizationOKCode int = 200

ListAllBillingManagersForOrganizationOKCode is the HTTP code returned for type ListAllBillingManagersForOrganizationOK

View Source
const ListAllDomainsForOrganizationDeprecatedOKCode int = 200

ListAllDomainsForOrganizationDeprecatedOKCode is the HTTP code returned for type ListAllDomainsForOrganizationDeprecatedOK

View Source
const ListAllManagersForOrganizationOKCode int = 200

ListAllManagersForOrganizationOKCode is the HTTP code returned for type ListAllManagersForOrganizationOK

View Source
const ListAllOrganizationsOKCode int = 200

ListAllOrganizationsOKCode is the HTTP code returned for type ListAllOrganizationsOK

View Source
const ListAllPrivateDomainsForOrganizationOKCode int = 200

ListAllPrivateDomainsForOrganizationOKCode is the HTTP code returned for type ListAllPrivateDomainsForOrganizationOK

View Source
const ListAllServicesForOrganizationOKCode int = 200

ListAllServicesForOrganizationOKCode is the HTTP code returned for type ListAllServicesForOrganizationOK

View Source
const ListAllSpaceQuotaDefinitionsForOrganizationOKCode int = 200

ListAllSpaceQuotaDefinitionsForOrganizationOKCode is the HTTP code returned for type ListAllSpaceQuotaDefinitionsForOrganizationOK

View Source
const ListAllSpacesForOrganizationOKCode int = 200

ListAllSpacesForOrganizationOKCode is the HTTP code returned for type ListAllSpacesForOrganizationOK

View Source
const ListAllUsersForOrganizationOKCode int = 200

ListAllUsersForOrganizationOKCode is the HTTP code returned for type ListAllUsersForOrganizationOK

View Source
const RemoveAuditorFromOrganizationCreatedCode int = 201

RemoveAuditorFromOrganizationCreatedCode is the HTTP code returned for type RemoveAuditorFromOrganizationCreated

View Source
const RemoveBillingManagerFromOrganizationCreatedCode int = 201

RemoveBillingManagerFromOrganizationCreatedCode is the HTTP code returned for type RemoveBillingManagerFromOrganizationCreated

View Source
const RemoveManagerFromOrganizationCreatedCode int = 201

RemoveManagerFromOrganizationCreatedCode is the HTTP code returned for type RemoveManagerFromOrganizationCreated

View Source
const RemoveUserFromOrganizationCreatedCode int = 201

RemoveUserFromOrganizationCreatedCode is the HTTP code returned for type RemoveUserFromOrganizationCreated

View Source
const RetrieveOrganizationOKCode int = 200

RetrieveOrganizationOKCode is the HTTP code returned for type RetrieveOrganizationOK

View Source
const RetrievingOrganizationMemoryUsageOKCode int = 200

RetrievingOrganizationMemoryUsageOKCode is the HTTP code returned for type RetrievingOrganizationMemoryUsageOK

View Source
const UpdateOrganizationCreatedCode int = 201

UpdateOrganizationCreatedCode is the HTTP code returned for type UpdateOrganizationCreated

Variables

This section is empty.

Functions

This section is empty.

Types

type AssociateAuditorWithOrganization

type AssociateAuditorWithOrganization struct {
	Context *middleware.Context
	Handler AssociateAuditorWithOrganizationHandler
}

AssociateAuditorWithOrganization swagger:route PUT /organizations/{guid}/auditors/{auditor_guid} organizations associateAuditorWithOrganization

Associate Auditor with the Organization

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

func NewAssociateAuditorWithOrganization

func NewAssociateAuditorWithOrganization(ctx *middleware.Context, handler AssociateAuditorWithOrganizationHandler) *AssociateAuditorWithOrganization

NewAssociateAuditorWithOrganization creates a new http.Handler for the associate auditor with organization operation

func (*AssociateAuditorWithOrganization) ServeHTTP

type AssociateAuditorWithOrganizationCreated

type AssociateAuditorWithOrganizationCreated struct {

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

AssociateAuditorWithOrganizationCreated successful response

swagger:response associateAuditorWithOrganizationCreated

func NewAssociateAuditorWithOrganizationCreated

func NewAssociateAuditorWithOrganizationCreated() *AssociateAuditorWithOrganizationCreated

NewAssociateAuditorWithOrganizationCreated creates AssociateAuditorWithOrganizationCreated with default headers values

func (*AssociateAuditorWithOrganizationCreated) SetPayload

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

func (*AssociateAuditorWithOrganizationCreated) WithPayload

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

func (*AssociateAuditorWithOrganizationCreated) WriteResponse

WriteResponse to the client

type AssociateAuditorWithOrganizationHandler

type AssociateAuditorWithOrganizationHandler interface {
	Handle(AssociateAuditorWithOrganizationParams) middleware.Responder
}

AssociateAuditorWithOrganizationHandler interface for that can handle valid associate auditor with organization params

type AssociateAuditorWithOrganizationHandlerFunc

type AssociateAuditorWithOrganizationHandlerFunc func(AssociateAuditorWithOrganizationParams) middleware.Responder

AssociateAuditorWithOrganizationHandlerFunc turns a function with the right signature into a associate auditor with organization handler

func (AssociateAuditorWithOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateAuditorWithOrganizationParams

type AssociateAuditorWithOrganizationParams struct {

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

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

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

swagger:parameters associateAuditorWithOrganization

func NewAssociateAuditorWithOrganizationParams

func NewAssociateAuditorWithOrganizationParams() AssociateAuditorWithOrganizationParams

NewAssociateAuditorWithOrganizationParams creates a new AssociateAuditorWithOrganizationParams object no default values defined in spec.

func (*AssociateAuditorWithOrganizationParams) 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 NewAssociateAuditorWithOrganizationParams() beforehand.

type AssociateAuditorWithOrganizationURL

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

AssociateAuditorWithOrganizationURL generates an URL for the associate auditor with organization operation

func (*AssociateAuditorWithOrganizationURL) Build

Build a url path and query string

func (*AssociateAuditorWithOrganizationURL) BuildFull

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

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

func (*AssociateAuditorWithOrganizationURL) Must

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

func (*AssociateAuditorWithOrganizationURL) SetBasePath

func (o *AssociateAuditorWithOrganizationURL) 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 (*AssociateAuditorWithOrganizationURL) String

String returns the string representation of the path with query string

func (*AssociateAuditorWithOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*AssociateAuditorWithOrganizationURL) 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 AssociateBillingManagerWithOrganization

type AssociateBillingManagerWithOrganization struct {
	Context *middleware.Context
	Handler AssociateBillingManagerWithOrganizationHandler
}

AssociateBillingManagerWithOrganization swagger:route PUT /organizations/{guid}/billing_managers/{billing_manager_guid} organizations associateBillingManagerWithOrganization

Associate Billing Manager with the Organization

curl --insecure -i %s/v2/organizations/{guid}/billing_managers/{billing_manager_guid} -X PUT -H 'Authorization: %s'

func NewAssociateBillingManagerWithOrganization

func NewAssociateBillingManagerWithOrganization(ctx *middleware.Context, handler AssociateBillingManagerWithOrganizationHandler) *AssociateBillingManagerWithOrganization

NewAssociateBillingManagerWithOrganization creates a new http.Handler for the associate billing manager with organization operation

func (*AssociateBillingManagerWithOrganization) ServeHTTP

type AssociateBillingManagerWithOrganizationCreated

type AssociateBillingManagerWithOrganizationCreated struct {

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

AssociateBillingManagerWithOrganizationCreated successful response

swagger:response associateBillingManagerWithOrganizationCreated

func NewAssociateBillingManagerWithOrganizationCreated

func NewAssociateBillingManagerWithOrganizationCreated() *AssociateBillingManagerWithOrganizationCreated

NewAssociateBillingManagerWithOrganizationCreated creates AssociateBillingManagerWithOrganizationCreated with default headers values

func (*AssociateBillingManagerWithOrganizationCreated) SetPayload

SetPayload sets the payload to the associate billing manager with organization created response

func (*AssociateBillingManagerWithOrganizationCreated) WithPayload

WithPayload adds the payload to the associate billing manager with organization created response

func (*AssociateBillingManagerWithOrganizationCreated) WriteResponse

WriteResponse to the client

type AssociateBillingManagerWithOrganizationHandler

type AssociateBillingManagerWithOrganizationHandler interface {
	Handle(AssociateBillingManagerWithOrganizationParams) middleware.Responder
}

AssociateBillingManagerWithOrganizationHandler interface for that can handle valid associate billing manager with organization params

type AssociateBillingManagerWithOrganizationHandlerFunc

type AssociateBillingManagerWithOrganizationHandlerFunc func(AssociateBillingManagerWithOrganizationParams) middleware.Responder

AssociateBillingManagerWithOrganizationHandlerFunc turns a function with the right signature into a associate billing manager with organization handler

func (AssociateBillingManagerWithOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateBillingManagerWithOrganizationParams

type AssociateBillingManagerWithOrganizationParams struct {

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

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

AssociateBillingManagerWithOrganizationParams contains all the bound params for the associate billing manager with organization operation typically these are obtained from a http.Request

swagger:parameters associateBillingManagerWithOrganization

func NewAssociateBillingManagerWithOrganizationParams

func NewAssociateBillingManagerWithOrganizationParams() AssociateBillingManagerWithOrganizationParams

NewAssociateBillingManagerWithOrganizationParams creates a new AssociateBillingManagerWithOrganizationParams object no default values defined in spec.

func (*AssociateBillingManagerWithOrganizationParams) 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 NewAssociateBillingManagerWithOrganizationParams() beforehand.

type AssociateBillingManagerWithOrganizationURL

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

AssociateBillingManagerWithOrganizationURL generates an URL for the associate billing manager with organization operation

func (*AssociateBillingManagerWithOrganizationURL) Build

Build a url path and query string

func (*AssociateBillingManagerWithOrganizationURL) BuildFull

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

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

func (*AssociateBillingManagerWithOrganizationURL) Must

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

func (*AssociateBillingManagerWithOrganizationURL) SetBasePath

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 (*AssociateBillingManagerWithOrganizationURL) String

String returns the string representation of the path with query string

func (*AssociateBillingManagerWithOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*AssociateBillingManagerWithOrganizationURL) 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 AssociateManagerWithOrganization

type AssociateManagerWithOrganization struct {
	Context *middleware.Context
	Handler AssociateManagerWithOrganizationHandler
}

AssociateManagerWithOrganization swagger:route PUT /organizations/{guid}/managers/{manager_guid} organizations associateManagerWithOrganization

Associate Manager with the Organization

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

func NewAssociateManagerWithOrganization

func NewAssociateManagerWithOrganization(ctx *middleware.Context, handler AssociateManagerWithOrganizationHandler) *AssociateManagerWithOrganization

NewAssociateManagerWithOrganization creates a new http.Handler for the associate manager with organization operation

func (*AssociateManagerWithOrganization) ServeHTTP

type AssociateManagerWithOrganizationCreated

type AssociateManagerWithOrganizationCreated struct {

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

AssociateManagerWithOrganizationCreated successful response

swagger:response associateManagerWithOrganizationCreated

func NewAssociateManagerWithOrganizationCreated

func NewAssociateManagerWithOrganizationCreated() *AssociateManagerWithOrganizationCreated

NewAssociateManagerWithOrganizationCreated creates AssociateManagerWithOrganizationCreated with default headers values

func (*AssociateManagerWithOrganizationCreated) SetPayload

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

func (*AssociateManagerWithOrganizationCreated) WithPayload

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

func (*AssociateManagerWithOrganizationCreated) WriteResponse

WriteResponse to the client

type AssociateManagerWithOrganizationHandler

type AssociateManagerWithOrganizationHandler interface {
	Handle(AssociateManagerWithOrganizationParams) middleware.Responder
}

AssociateManagerWithOrganizationHandler interface for that can handle valid associate manager with organization params

type AssociateManagerWithOrganizationHandlerFunc

type AssociateManagerWithOrganizationHandlerFunc func(AssociateManagerWithOrganizationParams) middleware.Responder

AssociateManagerWithOrganizationHandlerFunc turns a function with the right signature into a associate manager with organization handler

func (AssociateManagerWithOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateManagerWithOrganizationParams

type AssociateManagerWithOrganizationParams struct {

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

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

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

swagger:parameters associateManagerWithOrganization

func NewAssociateManagerWithOrganizationParams

func NewAssociateManagerWithOrganizationParams() AssociateManagerWithOrganizationParams

NewAssociateManagerWithOrganizationParams creates a new AssociateManagerWithOrganizationParams object no default values defined in spec.

func (*AssociateManagerWithOrganizationParams) 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 NewAssociateManagerWithOrganizationParams() beforehand.

type AssociateManagerWithOrganizationURL

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

AssociateManagerWithOrganizationURL generates an URL for the associate manager with organization operation

func (*AssociateManagerWithOrganizationURL) Build

Build a url path and query string

func (*AssociateManagerWithOrganizationURL) BuildFull

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

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

func (*AssociateManagerWithOrganizationURL) Must

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

func (*AssociateManagerWithOrganizationURL) SetBasePath

func (o *AssociateManagerWithOrganizationURL) 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 (*AssociateManagerWithOrganizationURL) String

String returns the string representation of the path with query string

func (*AssociateManagerWithOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*AssociateManagerWithOrganizationURL) 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 AssociateUserWithOrganization

type AssociateUserWithOrganization struct {
	Context *middleware.Context
	Handler AssociateUserWithOrganizationHandler
}

AssociateUserWithOrganization swagger:route PUT /organizations/{guid}/users/{user_guid} organizations associateUserWithOrganization

Associate User with the Organization

curl --insecure -i %s/v2/organizations/{guid}/users/{user_guid} -X PUT -H 'Authorization: %s'

func NewAssociateUserWithOrganization

func NewAssociateUserWithOrganization(ctx *middleware.Context, handler AssociateUserWithOrganizationHandler) *AssociateUserWithOrganization

NewAssociateUserWithOrganization creates a new http.Handler for the associate user with organization operation

func (*AssociateUserWithOrganization) ServeHTTP

type AssociateUserWithOrganizationCreated

type AssociateUserWithOrganizationCreated struct {

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

AssociateUserWithOrganizationCreated successful response

swagger:response associateUserWithOrganizationCreated

func NewAssociateUserWithOrganizationCreated

func NewAssociateUserWithOrganizationCreated() *AssociateUserWithOrganizationCreated

NewAssociateUserWithOrganizationCreated creates AssociateUserWithOrganizationCreated with default headers values

func (*AssociateUserWithOrganizationCreated) SetPayload

SetPayload sets the payload to the associate user with organization created response

func (*AssociateUserWithOrganizationCreated) WithPayload

WithPayload adds the payload to the associate user with organization created response

func (*AssociateUserWithOrganizationCreated) WriteResponse

WriteResponse to the client

type AssociateUserWithOrganizationHandler

type AssociateUserWithOrganizationHandler interface {
	Handle(AssociateUserWithOrganizationParams) middleware.Responder
}

AssociateUserWithOrganizationHandler interface for that can handle valid associate user with organization params

type AssociateUserWithOrganizationHandlerFunc

type AssociateUserWithOrganizationHandlerFunc func(AssociateUserWithOrganizationParams) middleware.Responder

AssociateUserWithOrganizationHandlerFunc turns a function with the right signature into a associate user with organization handler

func (AssociateUserWithOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type AssociateUserWithOrganizationParams

type AssociateUserWithOrganizationParams struct {

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

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

AssociateUserWithOrganizationParams contains all the bound params for the associate user with organization operation typically these are obtained from a http.Request

swagger:parameters associateUserWithOrganization

func NewAssociateUserWithOrganizationParams

func NewAssociateUserWithOrganizationParams() AssociateUserWithOrganizationParams

NewAssociateUserWithOrganizationParams creates a new AssociateUserWithOrganizationParams object no default values defined in spec.

func (*AssociateUserWithOrganizationParams) 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 NewAssociateUserWithOrganizationParams() beforehand.

type AssociateUserWithOrganizationURL

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

AssociateUserWithOrganizationURL generates an URL for the associate user with organization operation

func (*AssociateUserWithOrganizationURL) Build

Build a url path and query string

func (*AssociateUserWithOrganizationURL) BuildFull

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

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

func (*AssociateUserWithOrganizationURL) Must

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

func (*AssociateUserWithOrganizationURL) SetBasePath

func (o *AssociateUserWithOrganizationURL) 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 (*AssociateUserWithOrganizationURL) String

String returns the string representation of the path with query string

func (*AssociateUserWithOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*AssociateUserWithOrganizationURL) 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 CreateOrganization

type CreateOrganization struct {
	Context *middleware.Context
	Handler CreateOrganizationHandler
}

CreateOrganization swagger:route POST /organizations organizations createOrganization

Creating an Organization

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

func NewCreateOrganization

func NewCreateOrganization(ctx *middleware.Context, handler CreateOrganizationHandler) *CreateOrganization

NewCreateOrganization creates a new http.Handler for the create organization operation

func (*CreateOrganization) ServeHTTP

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

type CreateOrganizationCreated

type CreateOrganizationCreated struct {

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

CreateOrganizationCreated successful response

swagger:response createOrganizationCreated

func NewCreateOrganizationCreated

func NewCreateOrganizationCreated() *CreateOrganizationCreated

NewCreateOrganizationCreated creates CreateOrganizationCreated with default headers values

func (*CreateOrganizationCreated) SetPayload

SetPayload sets the payload to the create organization created response

func (*CreateOrganizationCreated) WithPayload

WithPayload adds the payload to the create organization created response

func (*CreateOrganizationCreated) WriteResponse

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

WriteResponse to the client

type CreateOrganizationHandler

type CreateOrganizationHandler interface {
	Handle(CreateOrganizationParams) middleware.Responder
}

CreateOrganizationHandler interface for that can handle valid create organization params

type CreateOrganizationHandlerFunc

type CreateOrganizationHandlerFunc func(CreateOrganizationParams) middleware.Responder

CreateOrganizationHandlerFunc turns a function with the right signature into a create organization handler

func (CreateOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type CreateOrganizationParams

type CreateOrganizationParams 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.CreateOrganizationRequest
}

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

swagger:parameters createOrganization

func NewCreateOrganizationParams

func NewCreateOrganizationParams() CreateOrganizationParams

NewCreateOrganizationParams creates a new CreateOrganizationParams object no default values defined in spec.

func (*CreateOrganizationParams) 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 NewCreateOrganizationParams() beforehand.

type CreateOrganizationURL

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

CreateOrganizationURL generates an URL for the create organization operation

func (*CreateOrganizationURL) Build

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

Build a url path and query string

func (*CreateOrganizationURL) BuildFull

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

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

func (*CreateOrganizationURL) Must

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

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

func (*CreateOrganizationURL) SetBasePath

func (o *CreateOrganizationURL) 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 (*CreateOrganizationURL) String

func (o *CreateOrganizationURL) String() string

String returns the string representation of the path with query string

func (*CreateOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*CreateOrganizationURL) WithBasePath

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

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 DeleteOrganization

type DeleteOrganization struct {
	Context *middleware.Context
	Handler DeleteOrganizationHandler
}

DeleteOrganization swagger:route DELETE /organizations/{guid} organizations deleteOrganization

Delete a Particular Organization

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

func NewDeleteOrganization

func NewDeleteOrganization(ctx *middleware.Context, handler DeleteOrganizationHandler) *DeleteOrganization

NewDeleteOrganization creates a new http.Handler for the delete organization operation

func (*DeleteOrganization) ServeHTTP

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

type DeleteOrganizationHandler

type DeleteOrganizationHandler interface {
	Handle(DeleteOrganizationParams) middleware.Responder
}

DeleteOrganizationHandler interface for that can handle valid delete organization params

type DeleteOrganizationHandlerFunc

type DeleteOrganizationHandlerFunc func(DeleteOrganizationParams) middleware.Responder

DeleteOrganizationHandlerFunc turns a function with the right signature into a delete organization handler

func (DeleteOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type DeleteOrganizationNoContent

type DeleteOrganizationNoContent struct {
}

DeleteOrganizationNoContent successful response

swagger:response deleteOrganizationNoContent

func NewDeleteOrganizationNoContent

func NewDeleteOrganizationNoContent() *DeleteOrganizationNoContent

NewDeleteOrganizationNoContent creates DeleteOrganizationNoContent with default headers values

func (*DeleteOrganizationNoContent) WriteResponse

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

WriteResponse to the client

type DeleteOrganizationParams

type DeleteOrganizationParams struct {

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

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

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

swagger:parameters deleteOrganization

func NewDeleteOrganizationParams

func NewDeleteOrganizationParams() DeleteOrganizationParams

NewDeleteOrganizationParams creates a new DeleteOrganizationParams object no default values defined in spec.

func (*DeleteOrganizationParams) 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 NewDeleteOrganizationParams() beforehand.

type DeleteOrganizationURL

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

DeleteOrganizationURL generates an URL for the delete organization operation

func (*DeleteOrganizationURL) Build

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

Build a url path and query string

func (*DeleteOrganizationURL) BuildFull

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

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

func (*DeleteOrganizationURL) Must

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

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

func (*DeleteOrganizationURL) SetBasePath

func (o *DeleteOrganizationURL) 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 (*DeleteOrganizationURL) String

func (o *DeleteOrganizationURL) String() string

String returns the string representation of the path with query string

func (*DeleteOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*DeleteOrganizationURL) WithBasePath

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

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 GetOrganizationSummary

type GetOrganizationSummary struct {
	Context *middleware.Context
	Handler GetOrganizationSummaryHandler
}

GetOrganizationSummary swagger:route GET /organizations/{guid}/summary organizations getOrganizationSummary

Get Organization summary

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

func NewGetOrganizationSummary

func NewGetOrganizationSummary(ctx *middleware.Context, handler GetOrganizationSummaryHandler) *GetOrganizationSummary

NewGetOrganizationSummary creates a new http.Handler for the get organization summary operation

func (*GetOrganizationSummary) ServeHTTP

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

type GetOrganizationSummaryHandler

type GetOrganizationSummaryHandler interface {
	Handle(GetOrganizationSummaryParams) middleware.Responder
}

GetOrganizationSummaryHandler interface for that can handle valid get organization summary params

type GetOrganizationSummaryHandlerFunc

type GetOrganizationSummaryHandlerFunc func(GetOrganizationSummaryParams) middleware.Responder

GetOrganizationSummaryHandlerFunc turns a function with the right signature into a get organization summary handler

func (GetOrganizationSummaryHandlerFunc) Handle

Handle executing the request and returning a response

type GetOrganizationSummaryOK

type GetOrganizationSummaryOK struct {

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

GetOrganizationSummaryOK successful response

swagger:response getOrganizationSummaryOK

func NewGetOrganizationSummaryOK

func NewGetOrganizationSummaryOK() *GetOrganizationSummaryOK

NewGetOrganizationSummaryOK creates GetOrganizationSummaryOK with default headers values

func (*GetOrganizationSummaryOK) SetPayload

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

func (*GetOrganizationSummaryOK) WithPayload

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

func (*GetOrganizationSummaryOK) WriteResponse

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

WriteResponse to the client

type GetOrganizationSummaryParams

type GetOrganizationSummaryParams struct {

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

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

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

swagger:parameters getOrganizationSummary

func NewGetOrganizationSummaryParams

func NewGetOrganizationSummaryParams() GetOrganizationSummaryParams

NewGetOrganizationSummaryParams creates a new GetOrganizationSummaryParams object no default values defined in spec.

func (*GetOrganizationSummaryParams) 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 NewGetOrganizationSummaryParams() beforehand.

type GetOrganizationSummaryURL

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

GetOrganizationSummaryURL generates an URL for the get organization summary operation

func (*GetOrganizationSummaryURL) Build

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

Build a url path and query string

func (*GetOrganizationSummaryURL) BuildFull

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

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

func (*GetOrganizationSummaryURL) Must

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

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

func (*GetOrganizationSummaryURL) SetBasePath

func (o *GetOrganizationSummaryURL) 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 (*GetOrganizationSummaryURL) String

func (o *GetOrganizationSummaryURL) String() string

String returns the string representation of the path with query string

func (*GetOrganizationSummaryURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetOrganizationSummaryURL) 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 ListAllAuditorsForOrganization

type ListAllAuditorsForOrganization struct {
	Context *middleware.Context
	Handler ListAllAuditorsForOrganizationHandler
}

ListAllAuditorsForOrganization swagger:route GET /organizations/{guid}/auditors organizations listAllAuditorsForOrganization

List all Auditors for the Organization

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

func NewListAllAuditorsForOrganization

func NewListAllAuditorsForOrganization(ctx *middleware.Context, handler ListAllAuditorsForOrganizationHandler) *ListAllAuditorsForOrganization

NewListAllAuditorsForOrganization creates a new http.Handler for the list all auditors for organization operation

func (*ListAllAuditorsForOrganization) ServeHTTP

type ListAllAuditorsForOrganizationHandler

type ListAllAuditorsForOrganizationHandler interface {
	Handle(ListAllAuditorsForOrganizationParams) middleware.Responder
}

ListAllAuditorsForOrganizationHandler interface for that can handle valid list all auditors for organization params

type ListAllAuditorsForOrganizationHandlerFunc

type ListAllAuditorsForOrganizationHandlerFunc func(ListAllAuditorsForOrganizationParams) middleware.Responder

ListAllAuditorsForOrganizationHandlerFunc turns a function with the right signature into a list all auditors for organization handler

func (ListAllAuditorsForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllAuditorsForOrganizationOK

type ListAllAuditorsForOrganizationOK struct {

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

ListAllAuditorsForOrganizationOK successful response

swagger:response listAllAuditorsForOrganizationOK

func NewListAllAuditorsForOrganizationOK

func NewListAllAuditorsForOrganizationOK() *ListAllAuditorsForOrganizationOK

NewListAllAuditorsForOrganizationOK creates ListAllAuditorsForOrganizationOK with default headers values

func (*ListAllAuditorsForOrganizationOK) SetPayload

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

func (*ListAllAuditorsForOrganizationOK) WithPayload

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

func (*ListAllAuditorsForOrganizationOK) WriteResponse

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

WriteResponse to the client

type ListAllAuditorsForOrganizationParams

type ListAllAuditorsForOrganizationParams struct {

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

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

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

swagger:parameters listAllAuditorsForOrganization

func NewListAllAuditorsForOrganizationParams

func NewListAllAuditorsForOrganizationParams() ListAllAuditorsForOrganizationParams

NewListAllAuditorsForOrganizationParams creates a new ListAllAuditorsForOrganizationParams object no default values defined in spec.

func (*ListAllAuditorsForOrganizationParams) 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 NewListAllAuditorsForOrganizationParams() beforehand.

type ListAllAuditorsForOrganizationURL

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

ListAllAuditorsForOrganizationURL generates an URL for the list all auditors for organization operation

func (*ListAllAuditorsForOrganizationURL) Build

Build a url path and query string

func (*ListAllAuditorsForOrganizationURL) BuildFull

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

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

func (*ListAllAuditorsForOrganizationURL) Must

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

func (*ListAllAuditorsForOrganizationURL) SetBasePath

func (o *ListAllAuditorsForOrganizationURL) 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 (*ListAllAuditorsForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllAuditorsForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllAuditorsForOrganizationURL) 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 ListAllBillingManagersForOrganization

type ListAllBillingManagersForOrganization struct {
	Context *middleware.Context
	Handler ListAllBillingManagersForOrganizationHandler
}

ListAllBillingManagersForOrganization swagger:route GET /organizations/{guid}/billing_managers organizations listAllBillingManagersForOrganization

List all Billing Managers for the Organization

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

func NewListAllBillingManagersForOrganization

func NewListAllBillingManagersForOrganization(ctx *middleware.Context, handler ListAllBillingManagersForOrganizationHandler) *ListAllBillingManagersForOrganization

NewListAllBillingManagersForOrganization creates a new http.Handler for the list all billing managers for organization operation

func (*ListAllBillingManagersForOrganization) ServeHTTP

type ListAllBillingManagersForOrganizationHandler

type ListAllBillingManagersForOrganizationHandler interface {
	Handle(ListAllBillingManagersForOrganizationParams) middleware.Responder
}

ListAllBillingManagersForOrganizationHandler interface for that can handle valid list all billing managers for organization params

type ListAllBillingManagersForOrganizationHandlerFunc

type ListAllBillingManagersForOrganizationHandlerFunc func(ListAllBillingManagersForOrganizationParams) middleware.Responder

ListAllBillingManagersForOrganizationHandlerFunc turns a function with the right signature into a list all billing managers for organization handler

func (ListAllBillingManagersForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllBillingManagersForOrganizationOK

type ListAllBillingManagersForOrganizationOK struct {

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

ListAllBillingManagersForOrganizationOK successful response

swagger:response listAllBillingManagersForOrganizationOK

func NewListAllBillingManagersForOrganizationOK

func NewListAllBillingManagersForOrganizationOK() *ListAllBillingManagersForOrganizationOK

NewListAllBillingManagersForOrganizationOK creates ListAllBillingManagersForOrganizationOK with default headers values

func (*ListAllBillingManagersForOrganizationOK) SetPayload

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

func (*ListAllBillingManagersForOrganizationOK) WithPayload

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

func (*ListAllBillingManagersForOrganizationOK) WriteResponse

WriteResponse to the client

type ListAllBillingManagersForOrganizationParams

type ListAllBillingManagersForOrganizationParams struct {

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

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

ListAllBillingManagersForOrganizationParams contains all the bound params for the list all billing managers for organization operation typically these are obtained from a http.Request

swagger:parameters listAllBillingManagersForOrganization

func NewListAllBillingManagersForOrganizationParams

func NewListAllBillingManagersForOrganizationParams() ListAllBillingManagersForOrganizationParams

NewListAllBillingManagersForOrganizationParams creates a new ListAllBillingManagersForOrganizationParams object no default values defined in spec.

func (*ListAllBillingManagersForOrganizationParams) 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 NewListAllBillingManagersForOrganizationParams() beforehand.

type ListAllBillingManagersForOrganizationURL

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

ListAllBillingManagersForOrganizationURL generates an URL for the list all billing managers for organization operation

func (*ListAllBillingManagersForOrganizationURL) Build

Build a url path and query string

func (*ListAllBillingManagersForOrganizationURL) BuildFull

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

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

func (*ListAllBillingManagersForOrganizationURL) Must

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

func (*ListAllBillingManagersForOrganizationURL) SetBasePath

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 (*ListAllBillingManagersForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllBillingManagersForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllBillingManagersForOrganizationURL) 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 ListAllDomainsForOrganizationDeprecated

type ListAllDomainsForOrganizationDeprecated struct {
	Context *middleware.Context
	Handler ListAllDomainsForOrganizationDeprecatedHandler
}

ListAllDomainsForOrganizationDeprecated swagger:route GET /organizations/{guid}/domains organizations listAllDomainsForOrganizationDeprecated

List all Domains for the Organization (deprecated)

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

func NewListAllDomainsForOrganizationDeprecated

func NewListAllDomainsForOrganizationDeprecated(ctx *middleware.Context, handler ListAllDomainsForOrganizationDeprecatedHandler) *ListAllDomainsForOrganizationDeprecated

NewListAllDomainsForOrganizationDeprecated creates a new http.Handler for the list all domains for organization deprecated operation

func (*ListAllDomainsForOrganizationDeprecated) ServeHTTP

type ListAllDomainsForOrganizationDeprecatedHandler

type ListAllDomainsForOrganizationDeprecatedHandler interface {
	Handle(ListAllDomainsForOrganizationDeprecatedParams) middleware.Responder
}

ListAllDomainsForOrganizationDeprecatedHandler interface for that can handle valid list all domains for organization deprecated params

type ListAllDomainsForOrganizationDeprecatedHandlerFunc

type ListAllDomainsForOrganizationDeprecatedHandlerFunc func(ListAllDomainsForOrganizationDeprecatedParams) middleware.Responder

ListAllDomainsForOrganizationDeprecatedHandlerFunc turns a function with the right signature into a list all domains for organization deprecated handler

func (ListAllDomainsForOrganizationDeprecatedHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllDomainsForOrganizationDeprecatedOK

type ListAllDomainsForOrganizationDeprecatedOK struct {

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

ListAllDomainsForOrganizationDeprecatedOK successful response

swagger:response listAllDomainsForOrganizationDeprecatedOK

func NewListAllDomainsForOrganizationDeprecatedOK

func NewListAllDomainsForOrganizationDeprecatedOK() *ListAllDomainsForOrganizationDeprecatedOK

NewListAllDomainsForOrganizationDeprecatedOK creates ListAllDomainsForOrganizationDeprecatedOK with default headers values

func (*ListAllDomainsForOrganizationDeprecatedOK) SetPayload

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

func (*ListAllDomainsForOrganizationDeprecatedOK) WithPayload

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

func (*ListAllDomainsForOrganizationDeprecatedOK) WriteResponse

WriteResponse to the client

type ListAllDomainsForOrganizationDeprecatedParams

type ListAllDomainsForOrganizationDeprecatedParams struct {

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

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

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

swagger:parameters listAllDomainsForOrganizationDeprecated

func NewListAllDomainsForOrganizationDeprecatedParams

func NewListAllDomainsForOrganizationDeprecatedParams() ListAllDomainsForOrganizationDeprecatedParams

NewListAllDomainsForOrganizationDeprecatedParams creates a new ListAllDomainsForOrganizationDeprecatedParams object no default values defined in spec.

func (*ListAllDomainsForOrganizationDeprecatedParams) 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 NewListAllDomainsForOrganizationDeprecatedParams() beforehand.

type ListAllDomainsForOrganizationDeprecatedURL

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

ListAllDomainsForOrganizationDeprecatedURL generates an URL for the list all domains for organization deprecated operation

func (*ListAllDomainsForOrganizationDeprecatedURL) Build

Build a url path and query string

func (*ListAllDomainsForOrganizationDeprecatedURL) BuildFull

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

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

func (*ListAllDomainsForOrganizationDeprecatedURL) Must

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

func (*ListAllDomainsForOrganizationDeprecatedURL) SetBasePath

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 (*ListAllDomainsForOrganizationDeprecatedURL) String

String returns the string representation of the path with query string

func (*ListAllDomainsForOrganizationDeprecatedURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllDomainsForOrganizationDeprecatedURL) 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 ListAllManagersForOrganization

type ListAllManagersForOrganization struct {
	Context *middleware.Context
	Handler ListAllManagersForOrganizationHandler
}

ListAllManagersForOrganization swagger:route GET /organizations/{guid}/managers organizations listAllManagersForOrganization

List all Managers for the Organization

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

func NewListAllManagersForOrganization

func NewListAllManagersForOrganization(ctx *middleware.Context, handler ListAllManagersForOrganizationHandler) *ListAllManagersForOrganization

NewListAllManagersForOrganization creates a new http.Handler for the list all managers for organization operation

func (*ListAllManagersForOrganization) ServeHTTP

type ListAllManagersForOrganizationHandler

type ListAllManagersForOrganizationHandler interface {
	Handle(ListAllManagersForOrganizationParams) middleware.Responder
}

ListAllManagersForOrganizationHandler interface for that can handle valid list all managers for organization params

type ListAllManagersForOrganizationHandlerFunc

type ListAllManagersForOrganizationHandlerFunc func(ListAllManagersForOrganizationParams) middleware.Responder

ListAllManagersForOrganizationHandlerFunc turns a function with the right signature into a list all managers for organization handler

func (ListAllManagersForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllManagersForOrganizationOK

type ListAllManagersForOrganizationOK struct {

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

ListAllManagersForOrganizationOK successful response

swagger:response listAllManagersForOrganizationOK

func NewListAllManagersForOrganizationOK

func NewListAllManagersForOrganizationOK() *ListAllManagersForOrganizationOK

NewListAllManagersForOrganizationOK creates ListAllManagersForOrganizationOK with default headers values

func (*ListAllManagersForOrganizationOK) SetPayload

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

func (*ListAllManagersForOrganizationOK) WithPayload

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

func (*ListAllManagersForOrganizationOK) WriteResponse

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

WriteResponse to the client

type ListAllManagersForOrganizationParams

type ListAllManagersForOrganizationParams struct {

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

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

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

swagger:parameters listAllManagersForOrganization

func NewListAllManagersForOrganizationParams

func NewListAllManagersForOrganizationParams() ListAllManagersForOrganizationParams

NewListAllManagersForOrganizationParams creates a new ListAllManagersForOrganizationParams object no default values defined in spec.

func (*ListAllManagersForOrganizationParams) 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 NewListAllManagersForOrganizationParams() beforehand.

type ListAllManagersForOrganizationURL

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

ListAllManagersForOrganizationURL generates an URL for the list all managers for organization operation

func (*ListAllManagersForOrganizationURL) Build

Build a url path and query string

func (*ListAllManagersForOrganizationURL) BuildFull

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

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

func (*ListAllManagersForOrganizationURL) Must

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

func (*ListAllManagersForOrganizationURL) SetBasePath

func (o *ListAllManagersForOrganizationURL) 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 (*ListAllManagersForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllManagersForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllManagersForOrganizationURL) 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 ListAllOrganizations

type ListAllOrganizations struct {
	Context *middleware.Context
	Handler ListAllOrganizationsHandler
}

ListAllOrganizations swagger:route GET /organizations organizations listAllOrganizations

List all Organizations

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

func NewListAllOrganizations

func NewListAllOrganizations(ctx *middleware.Context, handler ListAllOrganizationsHandler) *ListAllOrganizations

NewListAllOrganizations creates a new http.Handler for the list all organizations operation

func (*ListAllOrganizations) ServeHTTP

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

type ListAllOrganizationsHandler

type ListAllOrganizationsHandler interface {
	Handle(ListAllOrganizationsParams) middleware.Responder
}

ListAllOrganizationsHandler interface for that can handle valid list all organizations params

type ListAllOrganizationsHandlerFunc

type ListAllOrganizationsHandlerFunc func(ListAllOrganizationsParams) middleware.Responder

ListAllOrganizationsHandlerFunc turns a function with the right signature into a list all organizations handler

func (ListAllOrganizationsHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllOrganizationsOK

type ListAllOrganizationsOK struct {

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

ListAllOrganizationsOK successful response

swagger:response listAllOrganizationsOK

func NewListAllOrganizationsOK

func NewListAllOrganizationsOK() *ListAllOrganizationsOK

NewListAllOrganizationsOK creates ListAllOrganizationsOK with default headers values

func (*ListAllOrganizationsOK) SetPayload

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

func (*ListAllOrganizationsOK) WithPayload

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

func (*ListAllOrganizationsOK) WriteResponse

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

WriteResponse to the client

type ListAllOrganizationsParams

type ListAllOrganizationsParams struct {

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

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

swagger:parameters listAllOrganizations

func NewListAllOrganizationsParams

func NewListAllOrganizationsParams() ListAllOrganizationsParams

NewListAllOrganizationsParams creates a new ListAllOrganizationsParams object no default values defined in spec.

func (*ListAllOrganizationsParams) 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 NewListAllOrganizationsParams() beforehand.

type ListAllOrganizationsURL

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

ListAllOrganizationsURL generates an URL for the list all organizations operation

func (*ListAllOrganizationsURL) Build

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

Build a url path and query string

func (*ListAllOrganizationsURL) BuildFull

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

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

func (*ListAllOrganizationsURL) Must

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

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

func (*ListAllOrganizationsURL) SetBasePath

func (o *ListAllOrganizationsURL) 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 (*ListAllOrganizationsURL) String

func (o *ListAllOrganizationsURL) String() string

String returns the string representation of the path with query string

func (*ListAllOrganizationsURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllOrganizationsURL) 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 ListAllPrivateDomainsForOrganization

type ListAllPrivateDomainsForOrganization struct {
	Context *middleware.Context
	Handler ListAllPrivateDomainsForOrganizationHandler
}

ListAllPrivateDomainsForOrganization swagger:route GET /organizations/{guid}/private_domains organizations listAllPrivateDomainsForOrganization

List all Private Domains for the Organization

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

func NewListAllPrivateDomainsForOrganization

func NewListAllPrivateDomainsForOrganization(ctx *middleware.Context, handler ListAllPrivateDomainsForOrganizationHandler) *ListAllPrivateDomainsForOrganization

NewListAllPrivateDomainsForOrganization creates a new http.Handler for the list all private domains for organization operation

func (*ListAllPrivateDomainsForOrganization) ServeHTTP

type ListAllPrivateDomainsForOrganizationHandler

type ListAllPrivateDomainsForOrganizationHandler interface {
	Handle(ListAllPrivateDomainsForOrganizationParams) middleware.Responder
}

ListAllPrivateDomainsForOrganizationHandler interface for that can handle valid list all private domains for organization params

type ListAllPrivateDomainsForOrganizationHandlerFunc

type ListAllPrivateDomainsForOrganizationHandlerFunc func(ListAllPrivateDomainsForOrganizationParams) middleware.Responder

ListAllPrivateDomainsForOrganizationHandlerFunc turns a function with the right signature into a list all private domains for organization handler

func (ListAllPrivateDomainsForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllPrivateDomainsForOrganizationOK

type ListAllPrivateDomainsForOrganizationOK struct {

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

ListAllPrivateDomainsForOrganizationOK successful response

swagger:response listAllPrivateDomainsForOrganizationOK

func NewListAllPrivateDomainsForOrganizationOK

func NewListAllPrivateDomainsForOrganizationOK() *ListAllPrivateDomainsForOrganizationOK

NewListAllPrivateDomainsForOrganizationOK creates ListAllPrivateDomainsForOrganizationOK with default headers values

func (*ListAllPrivateDomainsForOrganizationOK) SetPayload

SetPayload sets the payload to the list all private domains for organization o k response

func (*ListAllPrivateDomainsForOrganizationOK) WithPayload

WithPayload adds the payload to the list all private domains for organization o k response

func (*ListAllPrivateDomainsForOrganizationOK) WriteResponse

WriteResponse to the client

type ListAllPrivateDomainsForOrganizationParams

type ListAllPrivateDomainsForOrganizationParams struct {

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

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

ListAllPrivateDomainsForOrganizationParams contains all the bound params for the list all private domains for organization operation typically these are obtained from a http.Request

swagger:parameters listAllPrivateDomainsForOrganization

func NewListAllPrivateDomainsForOrganizationParams

func NewListAllPrivateDomainsForOrganizationParams() ListAllPrivateDomainsForOrganizationParams

NewListAllPrivateDomainsForOrganizationParams creates a new ListAllPrivateDomainsForOrganizationParams object no default values defined in spec.

func (*ListAllPrivateDomainsForOrganizationParams) 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 NewListAllPrivateDomainsForOrganizationParams() beforehand.

type ListAllPrivateDomainsForOrganizationURL

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

ListAllPrivateDomainsForOrganizationURL generates an URL for the list all private domains for organization operation

func (*ListAllPrivateDomainsForOrganizationURL) Build

Build a url path and query string

func (*ListAllPrivateDomainsForOrganizationURL) BuildFull

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

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

func (*ListAllPrivateDomainsForOrganizationURL) Must

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

func (*ListAllPrivateDomainsForOrganizationURL) SetBasePath

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 (*ListAllPrivateDomainsForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllPrivateDomainsForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllPrivateDomainsForOrganizationURL) 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 ListAllServicesForOrganization

type ListAllServicesForOrganization struct {
	Context *middleware.Context
	Handler ListAllServicesForOrganizationHandler
}

ListAllServicesForOrganization swagger:route GET /organizations/{guid}/services organizations listAllServicesForOrganization

List all Services for the Organization

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

func NewListAllServicesForOrganization

func NewListAllServicesForOrganization(ctx *middleware.Context, handler ListAllServicesForOrganizationHandler) *ListAllServicesForOrganization

NewListAllServicesForOrganization creates a new http.Handler for the list all services for organization operation

func (*ListAllServicesForOrganization) ServeHTTP

type ListAllServicesForOrganizationHandler

type ListAllServicesForOrganizationHandler interface {
	Handle(ListAllServicesForOrganizationParams) middleware.Responder
}

ListAllServicesForOrganizationHandler interface for that can handle valid list all services for organization params

type ListAllServicesForOrganizationHandlerFunc

type ListAllServicesForOrganizationHandlerFunc func(ListAllServicesForOrganizationParams) middleware.Responder

ListAllServicesForOrganizationHandlerFunc turns a function with the right signature into a list all services for organization handler

func (ListAllServicesForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllServicesForOrganizationOK

type ListAllServicesForOrganizationOK struct {

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

ListAllServicesForOrganizationOK successful response

swagger:response listAllServicesForOrganizationOK

func NewListAllServicesForOrganizationOK

func NewListAllServicesForOrganizationOK() *ListAllServicesForOrganizationOK

NewListAllServicesForOrganizationOK creates ListAllServicesForOrganizationOK with default headers values

func (*ListAllServicesForOrganizationOK) SetPayload

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

func (*ListAllServicesForOrganizationOK) WithPayload

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

func (*ListAllServicesForOrganizationOK) WriteResponse

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

WriteResponse to the client

type ListAllServicesForOrganizationParams

type ListAllServicesForOrganizationParams struct {

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

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

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

swagger:parameters listAllServicesForOrganization

func NewListAllServicesForOrganizationParams

func NewListAllServicesForOrganizationParams() ListAllServicesForOrganizationParams

NewListAllServicesForOrganizationParams creates a new ListAllServicesForOrganizationParams object no default values defined in spec.

func (*ListAllServicesForOrganizationParams) 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 NewListAllServicesForOrganizationParams() beforehand.

type ListAllServicesForOrganizationURL

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

ListAllServicesForOrganizationURL generates an URL for the list all services for organization operation

func (*ListAllServicesForOrganizationURL) Build

Build a url path and query string

func (*ListAllServicesForOrganizationURL) BuildFull

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

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

func (*ListAllServicesForOrganizationURL) Must

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

func (*ListAllServicesForOrganizationURL) SetBasePath

func (o *ListAllServicesForOrganizationURL) 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 (*ListAllServicesForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllServicesForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllServicesForOrganizationURL) 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 ListAllSpaceQuotaDefinitionsForOrganization

type ListAllSpaceQuotaDefinitionsForOrganization struct {
	Context *middleware.Context
	Handler ListAllSpaceQuotaDefinitionsForOrganizationHandler
}

ListAllSpaceQuotaDefinitionsForOrganization swagger:route GET /organizations/{guid}/space_quota_definitions organizations listAllSpaceQuotaDefinitionsForOrganization

List all Space Quota Definitions for the Organization

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

func NewListAllSpaceQuotaDefinitionsForOrganization

NewListAllSpaceQuotaDefinitionsForOrganization creates a new http.Handler for the list all space quota definitions for organization operation

func (*ListAllSpaceQuotaDefinitionsForOrganization) ServeHTTP

type ListAllSpaceQuotaDefinitionsForOrganizationHandler

type ListAllSpaceQuotaDefinitionsForOrganizationHandler interface {
	Handle(ListAllSpaceQuotaDefinitionsForOrganizationParams) middleware.Responder
}

ListAllSpaceQuotaDefinitionsForOrganizationHandler interface for that can handle valid list all space quota definitions for organization params

type ListAllSpaceQuotaDefinitionsForOrganizationHandlerFunc

type ListAllSpaceQuotaDefinitionsForOrganizationHandlerFunc func(ListAllSpaceQuotaDefinitionsForOrganizationParams) middleware.Responder

ListAllSpaceQuotaDefinitionsForOrganizationHandlerFunc turns a function with the right signature into a list all space quota definitions for organization handler

func (ListAllSpaceQuotaDefinitionsForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllSpaceQuotaDefinitionsForOrganizationOK

type ListAllSpaceQuotaDefinitionsForOrganizationOK struct {

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

ListAllSpaceQuotaDefinitionsForOrganizationOK successful response

swagger:response listAllSpaceQuotaDefinitionsForOrganizationOK

func NewListAllSpaceQuotaDefinitionsForOrganizationOK

func NewListAllSpaceQuotaDefinitionsForOrganizationOK() *ListAllSpaceQuotaDefinitionsForOrganizationOK

NewListAllSpaceQuotaDefinitionsForOrganizationOK creates ListAllSpaceQuotaDefinitionsForOrganizationOK with default headers values

func (*ListAllSpaceQuotaDefinitionsForOrganizationOK) SetPayload

SetPayload sets the payload to the list all space quota definitions for organization o k response

func (*ListAllSpaceQuotaDefinitionsForOrganizationOK) WithPayload

WithPayload adds the payload to the list all space quota definitions for organization o k response

func (*ListAllSpaceQuotaDefinitionsForOrganizationOK) WriteResponse

WriteResponse to the client

type ListAllSpaceQuotaDefinitionsForOrganizationParams

type ListAllSpaceQuotaDefinitionsForOrganizationParams struct {

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

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

ListAllSpaceQuotaDefinitionsForOrganizationParams contains all the bound params for the list all space quota definitions for organization operation typically these are obtained from a http.Request

swagger:parameters listAllSpaceQuotaDefinitionsForOrganization

func NewListAllSpaceQuotaDefinitionsForOrganizationParams

func NewListAllSpaceQuotaDefinitionsForOrganizationParams() ListAllSpaceQuotaDefinitionsForOrganizationParams

NewListAllSpaceQuotaDefinitionsForOrganizationParams creates a new ListAllSpaceQuotaDefinitionsForOrganizationParams object no default values defined in spec.

func (*ListAllSpaceQuotaDefinitionsForOrganizationParams) 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 NewListAllSpaceQuotaDefinitionsForOrganizationParams() beforehand.

type ListAllSpaceQuotaDefinitionsForOrganizationURL

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

ListAllSpaceQuotaDefinitionsForOrganizationURL generates an URL for the list all space quota definitions for organization operation

func (*ListAllSpaceQuotaDefinitionsForOrganizationURL) Build

Build a url path and query string

func (*ListAllSpaceQuotaDefinitionsForOrganizationURL) BuildFull

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

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

func (*ListAllSpaceQuotaDefinitionsForOrganizationURL) Must

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

func (*ListAllSpaceQuotaDefinitionsForOrganizationURL) SetBasePath

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 (*ListAllSpaceQuotaDefinitionsForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllSpaceQuotaDefinitionsForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllSpaceQuotaDefinitionsForOrganizationURL) 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 ListAllSpacesForOrganization

type ListAllSpacesForOrganization struct {
	Context *middleware.Context
	Handler ListAllSpacesForOrganizationHandler
}

ListAllSpacesForOrganization swagger:route GET /organizations/{guid}/spaces organizations listAllSpacesForOrganization

List all Spaces for the Organization

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

func NewListAllSpacesForOrganization

func NewListAllSpacesForOrganization(ctx *middleware.Context, handler ListAllSpacesForOrganizationHandler) *ListAllSpacesForOrganization

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

func (*ListAllSpacesForOrganization) ServeHTTP

type ListAllSpacesForOrganizationHandler

type ListAllSpacesForOrganizationHandler interface {
	Handle(ListAllSpacesForOrganizationParams) middleware.Responder
}

ListAllSpacesForOrganizationHandler interface for that can handle valid list all spaces for organization params

type ListAllSpacesForOrganizationHandlerFunc

type ListAllSpacesForOrganizationHandlerFunc func(ListAllSpacesForOrganizationParams) middleware.Responder

ListAllSpacesForOrganizationHandlerFunc turns a function with the right signature into a list all spaces for organization handler

func (ListAllSpacesForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllSpacesForOrganizationOK

type ListAllSpacesForOrganizationOK struct {

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

ListAllSpacesForOrganizationOK successful response

swagger:response listAllSpacesForOrganizationOK

func NewListAllSpacesForOrganizationOK

func NewListAllSpacesForOrganizationOK() *ListAllSpacesForOrganizationOK

NewListAllSpacesForOrganizationOK creates ListAllSpacesForOrganizationOK with default headers values

func (*ListAllSpacesForOrganizationOK) SetPayload

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

func (*ListAllSpacesForOrganizationOK) WithPayload

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

func (*ListAllSpacesForOrganizationOK) WriteResponse

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

WriteResponse to the client

type ListAllSpacesForOrganizationParams

type ListAllSpacesForOrganizationParams struct {

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

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

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

swagger:parameters listAllSpacesForOrganization

func NewListAllSpacesForOrganizationParams

func NewListAllSpacesForOrganizationParams() ListAllSpacesForOrganizationParams

NewListAllSpacesForOrganizationParams creates a new ListAllSpacesForOrganizationParams object no default values defined in spec.

func (*ListAllSpacesForOrganizationParams) 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 NewListAllSpacesForOrganizationParams() beforehand.

type ListAllSpacesForOrganizationURL

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

ListAllSpacesForOrganizationURL generates an URL for the list all spaces for organization operation

func (*ListAllSpacesForOrganizationURL) Build

Build a url path and query string

func (*ListAllSpacesForOrganizationURL) BuildFull

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

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

func (*ListAllSpacesForOrganizationURL) Must

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

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

func (*ListAllSpacesForOrganizationURL) SetBasePath

func (o *ListAllSpacesForOrganizationURL) 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 (*ListAllSpacesForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllSpacesForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllSpacesForOrganizationURL) 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 ListAllUsersForOrganization

type ListAllUsersForOrganization struct {
	Context *middleware.Context
	Handler ListAllUsersForOrganizationHandler
}

ListAllUsersForOrganization swagger:route GET /organizations/{guid}/users organizations listAllUsersForOrganization

List all Users for the Organization

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

func NewListAllUsersForOrganization

func NewListAllUsersForOrganization(ctx *middleware.Context, handler ListAllUsersForOrganizationHandler) *ListAllUsersForOrganization

NewListAllUsersForOrganization creates a new http.Handler for the list all users for organization operation

func (*ListAllUsersForOrganization) ServeHTTP

type ListAllUsersForOrganizationHandler

type ListAllUsersForOrganizationHandler interface {
	Handle(ListAllUsersForOrganizationParams) middleware.Responder
}

ListAllUsersForOrganizationHandler interface for that can handle valid list all users for organization params

type ListAllUsersForOrganizationHandlerFunc

type ListAllUsersForOrganizationHandlerFunc func(ListAllUsersForOrganizationParams) middleware.Responder

ListAllUsersForOrganizationHandlerFunc turns a function with the right signature into a list all users for organization handler

func (ListAllUsersForOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type ListAllUsersForOrganizationOK

type ListAllUsersForOrganizationOK struct {

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

ListAllUsersForOrganizationOK successful response

swagger:response listAllUsersForOrganizationOK

func NewListAllUsersForOrganizationOK

func NewListAllUsersForOrganizationOK() *ListAllUsersForOrganizationOK

NewListAllUsersForOrganizationOK creates ListAllUsersForOrganizationOK with default headers values

func (*ListAllUsersForOrganizationOK) SetPayload

SetPayload sets the payload to the list all users for organization o k response

func (*ListAllUsersForOrganizationOK) WithPayload

WithPayload adds the payload to the list all users for organization o k response

func (*ListAllUsersForOrganizationOK) WriteResponse

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

WriteResponse to the client

type ListAllUsersForOrganizationParams

type ListAllUsersForOrganizationParams struct {

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

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

ListAllUsersForOrganizationParams contains all the bound params for the list all users for organization operation typically these are obtained from a http.Request

swagger:parameters listAllUsersForOrganization

func NewListAllUsersForOrganizationParams

func NewListAllUsersForOrganizationParams() ListAllUsersForOrganizationParams

NewListAllUsersForOrganizationParams creates a new ListAllUsersForOrganizationParams object no default values defined in spec.

func (*ListAllUsersForOrganizationParams) 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 NewListAllUsersForOrganizationParams() beforehand.

type ListAllUsersForOrganizationURL

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

ListAllUsersForOrganizationURL generates an URL for the list all users for organization operation

func (*ListAllUsersForOrganizationURL) Build

Build a url path and query string

func (*ListAllUsersForOrganizationURL) BuildFull

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

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

func (*ListAllUsersForOrganizationURL) Must

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

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

func (*ListAllUsersForOrganizationURL) SetBasePath

func (o *ListAllUsersForOrganizationURL) 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 (*ListAllUsersForOrganizationURL) String

String returns the string representation of the path with query string

func (*ListAllUsersForOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*ListAllUsersForOrganizationURL) 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 RemoveAuditorFromOrganization

type RemoveAuditorFromOrganization struct {
	Context *middleware.Context
	Handler RemoveAuditorFromOrganizationHandler
}

RemoveAuditorFromOrganization swagger:route DELETE /organizations/{guid}/auditors/{auditor_guid} organizations removeAuditorFromOrganization

Remove Auditor from the Organization

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

func NewRemoveAuditorFromOrganization

func NewRemoveAuditorFromOrganization(ctx *middleware.Context, handler RemoveAuditorFromOrganizationHandler) *RemoveAuditorFromOrganization

NewRemoveAuditorFromOrganization creates a new http.Handler for the remove auditor from organization operation

func (*RemoveAuditorFromOrganization) ServeHTTP

type RemoveAuditorFromOrganizationCreated

type RemoveAuditorFromOrganizationCreated struct {

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

RemoveAuditorFromOrganizationCreated successful response

swagger:response removeAuditorFromOrganizationCreated

func NewRemoveAuditorFromOrganizationCreated

func NewRemoveAuditorFromOrganizationCreated() *RemoveAuditorFromOrganizationCreated

NewRemoveAuditorFromOrganizationCreated creates RemoveAuditorFromOrganizationCreated with default headers values

func (*RemoveAuditorFromOrganizationCreated) SetPayload

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

func (*RemoveAuditorFromOrganizationCreated) WithPayload

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

func (*RemoveAuditorFromOrganizationCreated) WriteResponse

WriteResponse to the client

type RemoveAuditorFromOrganizationHandler

type RemoveAuditorFromOrganizationHandler interface {
	Handle(RemoveAuditorFromOrganizationParams) middleware.Responder
}

RemoveAuditorFromOrganizationHandler interface for that can handle valid remove auditor from organization params

type RemoveAuditorFromOrganizationHandlerFunc

type RemoveAuditorFromOrganizationHandlerFunc func(RemoveAuditorFromOrganizationParams) middleware.Responder

RemoveAuditorFromOrganizationHandlerFunc turns a function with the right signature into a remove auditor from organization handler

func (RemoveAuditorFromOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveAuditorFromOrganizationParams

type RemoveAuditorFromOrganizationParams struct {

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

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

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

swagger:parameters removeAuditorFromOrganization

func NewRemoveAuditorFromOrganizationParams

func NewRemoveAuditorFromOrganizationParams() RemoveAuditorFromOrganizationParams

NewRemoveAuditorFromOrganizationParams creates a new RemoveAuditorFromOrganizationParams object no default values defined in spec.

func (*RemoveAuditorFromOrganizationParams) 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 NewRemoveAuditorFromOrganizationParams() beforehand.

type RemoveAuditorFromOrganizationURL

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

RemoveAuditorFromOrganizationURL generates an URL for the remove auditor from organization operation

func (*RemoveAuditorFromOrganizationURL) Build

Build a url path and query string

func (*RemoveAuditorFromOrganizationURL) BuildFull

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

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

func (*RemoveAuditorFromOrganizationURL) Must

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

func (*RemoveAuditorFromOrganizationURL) SetBasePath

func (o *RemoveAuditorFromOrganizationURL) 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 (*RemoveAuditorFromOrganizationURL) String

String returns the string representation of the path with query string

func (*RemoveAuditorFromOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*RemoveAuditorFromOrganizationURL) 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 RemoveBillingManagerFromOrganization

type RemoveBillingManagerFromOrganization struct {
	Context *middleware.Context
	Handler RemoveBillingManagerFromOrganizationHandler
}

RemoveBillingManagerFromOrganization swagger:route DELETE /organizations/{guid}/billing_managers/{billing_manager_guid} organizations removeBillingManagerFromOrganization

Remove Billing Manager from the Organization

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

func NewRemoveBillingManagerFromOrganization

func NewRemoveBillingManagerFromOrganization(ctx *middleware.Context, handler RemoveBillingManagerFromOrganizationHandler) *RemoveBillingManagerFromOrganization

NewRemoveBillingManagerFromOrganization creates a new http.Handler for the remove billing manager from organization operation

func (*RemoveBillingManagerFromOrganization) ServeHTTP

type RemoveBillingManagerFromOrganizationCreated

type RemoveBillingManagerFromOrganizationCreated struct {

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

RemoveBillingManagerFromOrganizationCreated successful response

swagger:response removeBillingManagerFromOrganizationCreated

func NewRemoveBillingManagerFromOrganizationCreated

func NewRemoveBillingManagerFromOrganizationCreated() *RemoveBillingManagerFromOrganizationCreated

NewRemoveBillingManagerFromOrganizationCreated creates RemoveBillingManagerFromOrganizationCreated with default headers values

func (*RemoveBillingManagerFromOrganizationCreated) SetPayload

SetPayload sets the payload to the remove billing manager from organization created response

func (*RemoveBillingManagerFromOrganizationCreated) WithPayload

WithPayload adds the payload to the remove billing manager from organization created response

func (*RemoveBillingManagerFromOrganizationCreated) WriteResponse

WriteResponse to the client

type RemoveBillingManagerFromOrganizationHandler

type RemoveBillingManagerFromOrganizationHandler interface {
	Handle(RemoveBillingManagerFromOrganizationParams) middleware.Responder
}

RemoveBillingManagerFromOrganizationHandler interface for that can handle valid remove billing manager from organization params

type RemoveBillingManagerFromOrganizationHandlerFunc

type RemoveBillingManagerFromOrganizationHandlerFunc func(RemoveBillingManagerFromOrganizationParams) middleware.Responder

RemoveBillingManagerFromOrganizationHandlerFunc turns a function with the right signature into a remove billing manager from organization handler

func (RemoveBillingManagerFromOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveBillingManagerFromOrganizationParams

type RemoveBillingManagerFromOrganizationParams struct {

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

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

RemoveBillingManagerFromOrganizationParams contains all the bound params for the remove billing manager from organization operation typically these are obtained from a http.Request

swagger:parameters removeBillingManagerFromOrganization

func NewRemoveBillingManagerFromOrganizationParams

func NewRemoveBillingManagerFromOrganizationParams() RemoveBillingManagerFromOrganizationParams

NewRemoveBillingManagerFromOrganizationParams creates a new RemoveBillingManagerFromOrganizationParams object no default values defined in spec.

func (*RemoveBillingManagerFromOrganizationParams) 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 NewRemoveBillingManagerFromOrganizationParams() beforehand.

type RemoveBillingManagerFromOrganizationURL

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

RemoveBillingManagerFromOrganizationURL generates an URL for the remove billing manager from organization operation

func (*RemoveBillingManagerFromOrganizationURL) Build

Build a url path and query string

func (*RemoveBillingManagerFromOrganizationURL) BuildFull

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

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

func (*RemoveBillingManagerFromOrganizationURL) Must

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

func (*RemoveBillingManagerFromOrganizationURL) SetBasePath

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 (*RemoveBillingManagerFromOrganizationURL) String

String returns the string representation of the path with query string

func (*RemoveBillingManagerFromOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*RemoveBillingManagerFromOrganizationURL) 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 RemoveManagerFromOrganization

type RemoveManagerFromOrganization struct {
	Context *middleware.Context
	Handler RemoveManagerFromOrganizationHandler
}

RemoveManagerFromOrganization swagger:route DELETE /organizations/{guid}/managers/{manager_guid} organizations removeManagerFromOrganization

Remove Manager from the Organization

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

func NewRemoveManagerFromOrganization

func NewRemoveManagerFromOrganization(ctx *middleware.Context, handler RemoveManagerFromOrganizationHandler) *RemoveManagerFromOrganization

NewRemoveManagerFromOrganization creates a new http.Handler for the remove manager from organization operation

func (*RemoveManagerFromOrganization) ServeHTTP

type RemoveManagerFromOrganizationCreated

type RemoveManagerFromOrganizationCreated struct {

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

RemoveManagerFromOrganizationCreated successful response

swagger:response removeManagerFromOrganizationCreated

func NewRemoveManagerFromOrganizationCreated

func NewRemoveManagerFromOrganizationCreated() *RemoveManagerFromOrganizationCreated

NewRemoveManagerFromOrganizationCreated creates RemoveManagerFromOrganizationCreated with default headers values

func (*RemoveManagerFromOrganizationCreated) SetPayload

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

func (*RemoveManagerFromOrganizationCreated) WithPayload

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

func (*RemoveManagerFromOrganizationCreated) WriteResponse

WriteResponse to the client

type RemoveManagerFromOrganizationHandler

type RemoveManagerFromOrganizationHandler interface {
	Handle(RemoveManagerFromOrganizationParams) middleware.Responder
}

RemoveManagerFromOrganizationHandler interface for that can handle valid remove manager from organization params

type RemoveManagerFromOrganizationHandlerFunc

type RemoveManagerFromOrganizationHandlerFunc func(RemoveManagerFromOrganizationParams) middleware.Responder

RemoveManagerFromOrganizationHandlerFunc turns a function with the right signature into a remove manager from organization handler

func (RemoveManagerFromOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveManagerFromOrganizationParams

type RemoveManagerFromOrganizationParams struct {

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

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

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

swagger:parameters removeManagerFromOrganization

func NewRemoveManagerFromOrganizationParams

func NewRemoveManagerFromOrganizationParams() RemoveManagerFromOrganizationParams

NewRemoveManagerFromOrganizationParams creates a new RemoveManagerFromOrganizationParams object no default values defined in spec.

func (*RemoveManagerFromOrganizationParams) 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 NewRemoveManagerFromOrganizationParams() beforehand.

type RemoveManagerFromOrganizationURL

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

RemoveManagerFromOrganizationURL generates an URL for the remove manager from organization operation

func (*RemoveManagerFromOrganizationURL) Build

Build a url path and query string

func (*RemoveManagerFromOrganizationURL) BuildFull

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

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

func (*RemoveManagerFromOrganizationURL) Must

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

func (*RemoveManagerFromOrganizationURL) SetBasePath

func (o *RemoveManagerFromOrganizationURL) 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 (*RemoveManagerFromOrganizationURL) String

String returns the string representation of the path with query string

func (*RemoveManagerFromOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*RemoveManagerFromOrganizationURL) 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 RemoveUserFromOrganization

type RemoveUserFromOrganization struct {
	Context *middleware.Context
	Handler RemoveUserFromOrganizationHandler
}

RemoveUserFromOrganization swagger:route DELETE /organizations/{guid}/users/{user_guid} organizations removeUserFromOrganization

Remove User from the Organization

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

func NewRemoveUserFromOrganization

func NewRemoveUserFromOrganization(ctx *middleware.Context, handler RemoveUserFromOrganizationHandler) *RemoveUserFromOrganization

NewRemoveUserFromOrganization creates a new http.Handler for the remove user from organization operation

func (*RemoveUserFromOrganization) ServeHTTP

type RemoveUserFromOrganizationCreated

type RemoveUserFromOrganizationCreated struct {

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

RemoveUserFromOrganizationCreated successful response

swagger:response removeUserFromOrganizationCreated

func NewRemoveUserFromOrganizationCreated

func NewRemoveUserFromOrganizationCreated() *RemoveUserFromOrganizationCreated

NewRemoveUserFromOrganizationCreated creates RemoveUserFromOrganizationCreated with default headers values

func (*RemoveUserFromOrganizationCreated) SetPayload

SetPayload sets the payload to the remove user from organization created response

func (*RemoveUserFromOrganizationCreated) WithPayload

WithPayload adds the payload to the remove user from organization created response

func (*RemoveUserFromOrganizationCreated) WriteResponse

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

WriteResponse to the client

type RemoveUserFromOrganizationHandler

type RemoveUserFromOrganizationHandler interface {
	Handle(RemoveUserFromOrganizationParams) middleware.Responder
}

RemoveUserFromOrganizationHandler interface for that can handle valid remove user from organization params

type RemoveUserFromOrganizationHandlerFunc

type RemoveUserFromOrganizationHandlerFunc func(RemoveUserFromOrganizationParams) middleware.Responder

RemoveUserFromOrganizationHandlerFunc turns a function with the right signature into a remove user from organization handler

func (RemoveUserFromOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type RemoveUserFromOrganizationParams

type RemoveUserFromOrganizationParams struct {

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

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

RemoveUserFromOrganizationParams contains all the bound params for the remove user from organization operation typically these are obtained from a http.Request

swagger:parameters removeUserFromOrganization

func NewRemoveUserFromOrganizationParams

func NewRemoveUserFromOrganizationParams() RemoveUserFromOrganizationParams

NewRemoveUserFromOrganizationParams creates a new RemoveUserFromOrganizationParams object no default values defined in spec.

func (*RemoveUserFromOrganizationParams) 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 NewRemoveUserFromOrganizationParams() beforehand.

type RemoveUserFromOrganizationURL

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

RemoveUserFromOrganizationURL generates an URL for the remove user from organization operation

func (*RemoveUserFromOrganizationURL) Build

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

Build a url path and query string

func (*RemoveUserFromOrganizationURL) BuildFull

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

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

func (*RemoveUserFromOrganizationURL) Must

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

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

func (*RemoveUserFromOrganizationURL) SetBasePath

func (o *RemoveUserFromOrganizationURL) 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 (*RemoveUserFromOrganizationURL) String

String returns the string representation of the path with query string

func (*RemoveUserFromOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*RemoveUserFromOrganizationURL) 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 RetrieveOrganization

type RetrieveOrganization struct {
	Context *middleware.Context
	Handler RetrieveOrganizationHandler
}

RetrieveOrganization swagger:route GET /organizations/{guid} organizations retrieveOrganization

Retrieve a Particular Organization

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

func NewRetrieveOrganization

func NewRetrieveOrganization(ctx *middleware.Context, handler RetrieveOrganizationHandler) *RetrieveOrganization

NewRetrieveOrganization creates a new http.Handler for the retrieve organization operation

func (*RetrieveOrganization) ServeHTTP

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

type RetrieveOrganizationHandler

type RetrieveOrganizationHandler interface {
	Handle(RetrieveOrganizationParams) middleware.Responder
}

RetrieveOrganizationHandler interface for that can handle valid retrieve organization params

type RetrieveOrganizationHandlerFunc

type RetrieveOrganizationHandlerFunc func(RetrieveOrganizationParams) middleware.Responder

RetrieveOrganizationHandlerFunc turns a function with the right signature into a retrieve organization handler

func (RetrieveOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type RetrieveOrganizationOK

type RetrieveOrganizationOK struct {

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

RetrieveOrganizationOK successful response

swagger:response retrieveOrganizationOK

func NewRetrieveOrganizationOK

func NewRetrieveOrganizationOK() *RetrieveOrganizationOK

NewRetrieveOrganizationOK creates RetrieveOrganizationOK with default headers values

func (*RetrieveOrganizationOK) SetPayload

SetPayload sets the payload to the retrieve organization o k response

func (*RetrieveOrganizationOK) WithPayload

WithPayload adds the payload to the retrieve organization o k response

func (*RetrieveOrganizationOK) WriteResponse

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

WriteResponse to the client

type RetrieveOrganizationParams

type RetrieveOrganizationParams struct {

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

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

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

swagger:parameters retrieveOrganization

func NewRetrieveOrganizationParams

func NewRetrieveOrganizationParams() RetrieveOrganizationParams

NewRetrieveOrganizationParams creates a new RetrieveOrganizationParams object no default values defined in spec.

func (*RetrieveOrganizationParams) 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 NewRetrieveOrganizationParams() beforehand.

type RetrieveOrganizationURL

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

RetrieveOrganizationURL generates an URL for the retrieve organization operation

func (*RetrieveOrganizationURL) Build

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

Build a url path and query string

func (*RetrieveOrganizationURL) BuildFull

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

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

func (*RetrieveOrganizationURL) Must

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

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

func (*RetrieveOrganizationURL) SetBasePath

func (o *RetrieveOrganizationURL) 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 (*RetrieveOrganizationURL) String

func (o *RetrieveOrganizationURL) String() string

String returns the string representation of the path with query string

func (*RetrieveOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*RetrieveOrganizationURL) 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 RetrievingOrganizationMemoryUsage

type RetrievingOrganizationMemoryUsage struct {
	Context *middleware.Context
	Handler RetrievingOrganizationMemoryUsageHandler
}

RetrievingOrganizationMemoryUsage swagger:route GET /organizations/{guid}/memory_usage organizations retrievingOrganizationMemoryUsage

Retrieving organization memory usage

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

func NewRetrievingOrganizationMemoryUsage

func NewRetrievingOrganizationMemoryUsage(ctx *middleware.Context, handler RetrievingOrganizationMemoryUsageHandler) *RetrievingOrganizationMemoryUsage

NewRetrievingOrganizationMemoryUsage creates a new http.Handler for the retrieving organization memory usage operation

func (*RetrievingOrganizationMemoryUsage) ServeHTTP

type RetrievingOrganizationMemoryUsageHandler

type RetrievingOrganizationMemoryUsageHandler interface {
	Handle(RetrievingOrganizationMemoryUsageParams) middleware.Responder
}

RetrievingOrganizationMemoryUsageHandler interface for that can handle valid retrieving organization memory usage params

type RetrievingOrganizationMemoryUsageHandlerFunc

type RetrievingOrganizationMemoryUsageHandlerFunc func(RetrievingOrganizationMemoryUsageParams) middleware.Responder

RetrievingOrganizationMemoryUsageHandlerFunc turns a function with the right signature into a retrieving organization memory usage handler

func (RetrievingOrganizationMemoryUsageHandlerFunc) Handle

Handle executing the request and returning a response

type RetrievingOrganizationMemoryUsageOK

type RetrievingOrganizationMemoryUsageOK struct {

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

RetrievingOrganizationMemoryUsageOK successful response

swagger:response retrievingOrganizationMemoryUsageOK

func NewRetrievingOrganizationMemoryUsageOK

func NewRetrievingOrganizationMemoryUsageOK() *RetrievingOrganizationMemoryUsageOK

NewRetrievingOrganizationMemoryUsageOK creates RetrievingOrganizationMemoryUsageOK with default headers values

func (*RetrievingOrganizationMemoryUsageOK) SetPayload

SetPayload sets the payload to the retrieving organization memory usage o k response

func (*RetrievingOrganizationMemoryUsageOK) WithPayload

WithPayload adds the payload to the retrieving organization memory usage o k response

func (*RetrievingOrganizationMemoryUsageOK) WriteResponse

WriteResponse to the client

type RetrievingOrganizationMemoryUsageParams

type RetrievingOrganizationMemoryUsageParams struct {

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

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

RetrievingOrganizationMemoryUsageParams contains all the bound params for the retrieving organization memory usage operation typically these are obtained from a http.Request

swagger:parameters retrievingOrganizationMemoryUsage

func NewRetrievingOrganizationMemoryUsageParams

func NewRetrievingOrganizationMemoryUsageParams() RetrievingOrganizationMemoryUsageParams

NewRetrievingOrganizationMemoryUsageParams creates a new RetrievingOrganizationMemoryUsageParams object no default values defined in spec.

func (*RetrievingOrganizationMemoryUsageParams) 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 NewRetrievingOrganizationMemoryUsageParams() beforehand.

type RetrievingOrganizationMemoryUsageURL

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

RetrievingOrganizationMemoryUsageURL generates an URL for the retrieving organization memory usage operation

func (*RetrievingOrganizationMemoryUsageURL) Build

Build a url path and query string

func (*RetrievingOrganizationMemoryUsageURL) BuildFull

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

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

func (*RetrievingOrganizationMemoryUsageURL) Must

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

func (*RetrievingOrganizationMemoryUsageURL) SetBasePath

func (o *RetrievingOrganizationMemoryUsageURL) 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 (*RetrievingOrganizationMemoryUsageURL) String

String returns the string representation of the path with query string

func (*RetrievingOrganizationMemoryUsageURL) StringFull

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

StringFull returns the string representation of a complete url

func (*RetrievingOrganizationMemoryUsageURL) 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 UpdateOrganization

type UpdateOrganization struct {
	Context *middleware.Context
	Handler UpdateOrganizationHandler
}

UpdateOrganization swagger:route PUT /organizations/{guid} organizations updateOrganization

Update an Organization

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

func NewUpdateOrganization

func NewUpdateOrganization(ctx *middleware.Context, handler UpdateOrganizationHandler) *UpdateOrganization

NewUpdateOrganization creates a new http.Handler for the update organization operation

func (*UpdateOrganization) ServeHTTP

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

type UpdateOrganizationCreated

type UpdateOrganizationCreated struct {

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

UpdateOrganizationCreated successful response

swagger:response updateOrganizationCreated

func NewUpdateOrganizationCreated

func NewUpdateOrganizationCreated() *UpdateOrganizationCreated

NewUpdateOrganizationCreated creates UpdateOrganizationCreated with default headers values

func (*UpdateOrganizationCreated) SetPayload

SetPayload sets the payload to the update organization created response

func (*UpdateOrganizationCreated) WithPayload

WithPayload adds the payload to the update organization created response

func (*UpdateOrganizationCreated) WriteResponse

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

WriteResponse to the client

type UpdateOrganizationHandler

type UpdateOrganizationHandler interface {
	Handle(UpdateOrganizationParams) middleware.Responder
}

UpdateOrganizationHandler interface for that can handle valid update organization params

type UpdateOrganizationHandlerFunc

type UpdateOrganizationHandlerFunc func(UpdateOrganizationParams) middleware.Responder

UpdateOrganizationHandlerFunc turns a function with the right signature into a update organization handler

func (UpdateOrganizationHandlerFunc) Handle

Handle executing the request and returning a response

type UpdateOrganizationParams

type UpdateOrganizationParams struct {

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

	/*The guid parameter is used as a part of the request URL: '/v2/organizations/: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.UpdateOrganizationRequest
}

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

swagger:parameters updateOrganization

func NewUpdateOrganizationParams

func NewUpdateOrganizationParams() UpdateOrganizationParams

NewUpdateOrganizationParams creates a new UpdateOrganizationParams object no default values defined in spec.

func (*UpdateOrganizationParams) 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 NewUpdateOrganizationParams() beforehand.

type UpdateOrganizationURL

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

UpdateOrganizationURL generates an URL for the update organization operation

func (*UpdateOrganizationURL) Build

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

Build a url path and query string

func (*UpdateOrganizationURL) BuildFull

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

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

func (*UpdateOrganizationURL) Must

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

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

func (*UpdateOrganizationURL) SetBasePath

func (o *UpdateOrganizationURL) 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 (*UpdateOrganizationURL) String

func (o *UpdateOrganizationURL) String() string

String returns the string representation of the path with query string

func (*UpdateOrganizationURL) StringFull

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

StringFull returns the string representation of a complete url

func (*UpdateOrganizationURL) WithBasePath

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

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