authority_ops

package
v0.0.0-...-9aa0b92 Latest Latest
Warning

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

Go to latest
Published: Jan 2, 2022 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

View Source
const AuthorityOpsDeleteAuthoritiesOKCode int = 200

AuthorityOpsDeleteAuthoritiesOKCode is the HTTP code returned for type AuthorityOpsDeleteAuthoritiesOK

View Source
const AuthorityOpsListAuthoritiesByIdentityOKCode int = 200

AuthorityOpsListAuthoritiesByIdentityOKCode is the HTTP code returned for type AuthorityOpsListAuthoritiesByIdentityOK

View Source
const AuthorityOpsListAuthoritiesByResourceOKCode int = 200

AuthorityOpsListAuthoritiesByResourceOKCode is the HTTP code returned for type AuthorityOpsListAuthoritiesByResourceOK

View Source
const AuthorityOpsSetAuthoritiesOKCode int = 200

AuthorityOpsSetAuthoritiesOKCode is the HTTP code returned for type AuthorityOpsSetAuthoritiesOK

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthorityOpsDeleteAuthorities

type AuthorityOpsDeleteAuthorities struct {
	Context *middleware.Context
	Handler AuthorityOpsDeleteAuthoritiesHandler
}
AuthorityOpsDeleteAuthorities swagger:route DELETE /authority AuthorityOps authorityOpsDeleteAuthorities

AuthorityOpsDeleteAuthorities authority ops delete authorities API

func NewAuthorityOpsDeleteAuthorities

func NewAuthorityOpsDeleteAuthorities(ctx *middleware.Context, handler AuthorityOpsDeleteAuthoritiesHandler) *AuthorityOpsDeleteAuthorities

NewAuthorityOpsDeleteAuthorities creates a new http.Handler for the authority ops delete authorities operation

func (*AuthorityOpsDeleteAuthorities) ServeHTTP

type AuthorityOpsDeleteAuthoritiesDefault

type AuthorityOpsDeleteAuthoritiesDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

AuthorityOpsDeleteAuthoritiesDefault An unexpected error response.

swagger:response authorityOpsDeleteAuthoritiesDefault

func NewAuthorityOpsDeleteAuthoritiesDefault

func NewAuthorityOpsDeleteAuthoritiesDefault(code int) *AuthorityOpsDeleteAuthoritiesDefault

NewAuthorityOpsDeleteAuthoritiesDefault creates AuthorityOpsDeleteAuthoritiesDefault with default headers values

func (*AuthorityOpsDeleteAuthoritiesDefault) SetPayload

SetPayload sets the payload to the authority ops delete authorities default response

func (*AuthorityOpsDeleteAuthoritiesDefault) SetStatusCode

func (o *AuthorityOpsDeleteAuthoritiesDefault) SetStatusCode(code int)

SetStatusCode sets the status to the authority ops delete authorities default response

func (*AuthorityOpsDeleteAuthoritiesDefault) WithPayload

WithPayload adds the payload to the authority ops delete authorities default response

func (*AuthorityOpsDeleteAuthoritiesDefault) WithStatusCode

WithStatusCode adds the status to the authority ops delete authorities default response

func (*AuthorityOpsDeleteAuthoritiesDefault) WriteResponse

WriteResponse to the client

type AuthorityOpsDeleteAuthoritiesHandler

type AuthorityOpsDeleteAuthoritiesHandler interface {
	Handle(AuthorityOpsDeleteAuthoritiesParams, *models.IdentityVerifyResp) middleware.Responder
}

AuthorityOpsDeleteAuthoritiesHandler interface for that can handle valid authority ops delete authorities params

type AuthorityOpsDeleteAuthoritiesHandlerFunc

type AuthorityOpsDeleteAuthoritiesHandlerFunc func(AuthorityOpsDeleteAuthoritiesParams, *models.IdentityVerifyResp) middleware.Responder

AuthorityOpsDeleteAuthoritiesHandlerFunc turns a function with the right signature into a authority ops delete authorities handler

func (AuthorityOpsDeleteAuthoritiesHandlerFunc) Handle

Handle executing the request and returning a response

type AuthorityOpsDeleteAuthoritiesOK

type AuthorityOpsDeleteAuthoritiesOK struct {

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

AuthorityOpsDeleteAuthoritiesOK A successful response.

swagger:response authorityOpsDeleteAuthoritiesOK

func NewAuthorityOpsDeleteAuthoritiesOK

func NewAuthorityOpsDeleteAuthoritiesOK() *AuthorityOpsDeleteAuthoritiesOK

NewAuthorityOpsDeleteAuthoritiesOK creates AuthorityOpsDeleteAuthoritiesOK with default headers values

func (*AuthorityOpsDeleteAuthoritiesOK) SetPayload

SetPayload sets the payload to the authority ops delete authorities o k response

func (*AuthorityOpsDeleteAuthoritiesOK) WithPayload

WithPayload adds the payload to the authority ops delete authorities o k response

func (*AuthorityOpsDeleteAuthoritiesOK) WriteResponse

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

WriteResponse to the client

type AuthorityOpsDeleteAuthoritiesParams

type AuthorityOpsDeleteAuthoritiesParams struct {

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

	/*
	  Required: true
	  In: body
	*/
	Body *models.AuthorityAuthorities
}

AuthorityOpsDeleteAuthoritiesParams contains all the bound params for the authority ops delete authorities operation typically these are obtained from a http.Request

swagger:parameters AuthorityOps_DeleteAuthorities

func NewAuthorityOpsDeleteAuthoritiesParams

func NewAuthorityOpsDeleteAuthoritiesParams() AuthorityOpsDeleteAuthoritiesParams

NewAuthorityOpsDeleteAuthoritiesParams creates a new AuthorityOpsDeleteAuthoritiesParams object

There are no default values defined in the spec.

func (*AuthorityOpsDeleteAuthoritiesParams) 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 NewAuthorityOpsDeleteAuthoritiesParams() beforehand.

type AuthorityOpsDeleteAuthoritiesURL

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

AuthorityOpsDeleteAuthoritiesURL generates an URL for the authority ops delete authorities operation

func (*AuthorityOpsDeleteAuthoritiesURL) Build

Build a url path and query string

func (*AuthorityOpsDeleteAuthoritiesURL) BuildFull

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

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

func (*AuthorityOpsDeleteAuthoritiesURL) Must

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

func (*AuthorityOpsDeleteAuthoritiesURL) SetBasePath

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

String returns the string representation of the path with query string

func (*AuthorityOpsDeleteAuthoritiesURL) StringFull

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

StringFull returns the string representation of a complete url

func (*AuthorityOpsDeleteAuthoritiesURL) 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 AuthorityOpsListAuthoritiesByIdentity

type AuthorityOpsListAuthoritiesByIdentity struct {
	Context *middleware.Context
	Handler AuthorityOpsListAuthoritiesByIdentityHandler
}
AuthorityOpsListAuthoritiesByIdentity swagger:route GET /authority/identity AuthorityOps authorityOpsListAuthoritiesByIdentity

AuthorityOpsListAuthoritiesByIdentity authority ops list authorities by identity API

func NewAuthorityOpsListAuthoritiesByIdentity

func NewAuthorityOpsListAuthoritiesByIdentity(ctx *middleware.Context, handler AuthorityOpsListAuthoritiesByIdentityHandler) *AuthorityOpsListAuthoritiesByIdentity

NewAuthorityOpsListAuthoritiesByIdentity creates a new http.Handler for the authority ops list authorities by identity operation

func (*AuthorityOpsListAuthoritiesByIdentity) ServeHTTP

type AuthorityOpsListAuthoritiesByIdentityDefault

type AuthorityOpsListAuthoritiesByIdentityDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

AuthorityOpsListAuthoritiesByIdentityDefault An unexpected error response.

swagger:response authorityOpsListAuthoritiesByIdentityDefault

func NewAuthorityOpsListAuthoritiesByIdentityDefault

func NewAuthorityOpsListAuthoritiesByIdentityDefault(code int) *AuthorityOpsListAuthoritiesByIdentityDefault

NewAuthorityOpsListAuthoritiesByIdentityDefault creates AuthorityOpsListAuthoritiesByIdentityDefault with default headers values

func (*AuthorityOpsListAuthoritiesByIdentityDefault) SetPayload

SetPayload sets the payload to the authority ops list authorities by identity default response

func (*AuthorityOpsListAuthoritiesByIdentityDefault) SetStatusCode

func (o *AuthorityOpsListAuthoritiesByIdentityDefault) SetStatusCode(code int)

SetStatusCode sets the status to the authority ops list authorities by identity default response

func (*AuthorityOpsListAuthoritiesByIdentityDefault) WithPayload

WithPayload adds the payload to the authority ops list authorities by identity default response

func (*AuthorityOpsListAuthoritiesByIdentityDefault) WithStatusCode

WithStatusCode adds the status to the authority ops list authorities by identity default response

func (*AuthorityOpsListAuthoritiesByIdentityDefault) WriteResponse

WriteResponse to the client

type AuthorityOpsListAuthoritiesByIdentityHandler

type AuthorityOpsListAuthoritiesByIdentityHandler interface {
	Handle(AuthorityOpsListAuthoritiesByIdentityParams, *models.IdentityVerifyResp) middleware.Responder
}

AuthorityOpsListAuthoritiesByIdentityHandler interface for that can handle valid authority ops list authorities by identity params

type AuthorityOpsListAuthoritiesByIdentityHandlerFunc

type AuthorityOpsListAuthoritiesByIdentityHandlerFunc func(AuthorityOpsListAuthoritiesByIdentityParams, *models.IdentityVerifyResp) middleware.Responder

AuthorityOpsListAuthoritiesByIdentityHandlerFunc turns a function with the right signature into a authority ops list authorities by identity handler

func (AuthorityOpsListAuthoritiesByIdentityHandlerFunc) Handle

Handle executing the request and returning a response

type AuthorityOpsListAuthoritiesByIdentityOK

type AuthorityOpsListAuthoritiesByIdentityOK struct {

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

AuthorityOpsListAuthoritiesByIdentityOK A successful response.

swagger:response authorityOpsListAuthoritiesByIdentityOK

func NewAuthorityOpsListAuthoritiesByIdentityOK

func NewAuthorityOpsListAuthoritiesByIdentityOK() *AuthorityOpsListAuthoritiesByIdentityOK

NewAuthorityOpsListAuthoritiesByIdentityOK creates AuthorityOpsListAuthoritiesByIdentityOK with default headers values

func (*AuthorityOpsListAuthoritiesByIdentityOK) SetPayload

SetPayload sets the payload to the authority ops list authorities by identity o k response

func (*AuthorityOpsListAuthoritiesByIdentityOK) WithPayload

WithPayload adds the payload to the authority ops list authorities by identity o k response

func (*AuthorityOpsListAuthoritiesByIdentityOK) WriteResponse

WriteResponse to the client

type AuthorityOpsListAuthoritiesByIdentityParams

type AuthorityOpsListAuthoritiesByIdentityParams struct {

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

	/*
	  In: query
	*/
	Email *string
	/*
	  In: query
	*/
	Name *string
}

AuthorityOpsListAuthoritiesByIdentityParams contains all the bound params for the authority ops list authorities by identity operation typically these are obtained from a http.Request

swagger:parameters AuthorityOps_ListAuthoritiesByIdentity

func NewAuthorityOpsListAuthoritiesByIdentityParams

func NewAuthorityOpsListAuthoritiesByIdentityParams() AuthorityOpsListAuthoritiesByIdentityParams

NewAuthorityOpsListAuthoritiesByIdentityParams creates a new AuthorityOpsListAuthoritiesByIdentityParams object

There are no default values defined in the spec.

func (*AuthorityOpsListAuthoritiesByIdentityParams) 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 NewAuthorityOpsListAuthoritiesByIdentityParams() beforehand.

type AuthorityOpsListAuthoritiesByIdentityURL

type AuthorityOpsListAuthoritiesByIdentityURL struct {
	Email *string
	Name  *string
	// contains filtered or unexported fields
}

AuthorityOpsListAuthoritiesByIdentityURL generates an URL for the authority ops list authorities by identity operation

func (*AuthorityOpsListAuthoritiesByIdentityURL) Build

Build a url path and query string

func (*AuthorityOpsListAuthoritiesByIdentityURL) BuildFull

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

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

func (*AuthorityOpsListAuthoritiesByIdentityURL) Must

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

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

String returns the string representation of the path with query string

func (*AuthorityOpsListAuthoritiesByIdentityURL) StringFull

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

StringFull returns the string representation of a complete url

func (*AuthorityOpsListAuthoritiesByIdentityURL) 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 AuthorityOpsListAuthoritiesByResource

type AuthorityOpsListAuthoritiesByResource struct {
	Context *middleware.Context
	Handler AuthorityOpsListAuthoritiesByResourceHandler
}
AuthorityOpsListAuthoritiesByResource swagger:route GET /authority/resource AuthorityOps authorityOpsListAuthoritiesByResource

AuthorityOpsListAuthoritiesByResource authority ops list authorities by resource API

func NewAuthorityOpsListAuthoritiesByResource

func NewAuthorityOpsListAuthoritiesByResource(ctx *middleware.Context, handler AuthorityOpsListAuthoritiesByResourceHandler) *AuthorityOpsListAuthoritiesByResource

NewAuthorityOpsListAuthoritiesByResource creates a new http.Handler for the authority ops list authorities by resource operation

func (*AuthorityOpsListAuthoritiesByResource) ServeHTTP

type AuthorityOpsListAuthoritiesByResourceDefault

type AuthorityOpsListAuthoritiesByResourceDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

AuthorityOpsListAuthoritiesByResourceDefault An unexpected error response.

swagger:response authorityOpsListAuthoritiesByResourceDefault

func NewAuthorityOpsListAuthoritiesByResourceDefault

func NewAuthorityOpsListAuthoritiesByResourceDefault(code int) *AuthorityOpsListAuthoritiesByResourceDefault

NewAuthorityOpsListAuthoritiesByResourceDefault creates AuthorityOpsListAuthoritiesByResourceDefault with default headers values

func (*AuthorityOpsListAuthoritiesByResourceDefault) SetPayload

SetPayload sets the payload to the authority ops list authorities by resource default response

func (*AuthorityOpsListAuthoritiesByResourceDefault) SetStatusCode

func (o *AuthorityOpsListAuthoritiesByResourceDefault) SetStatusCode(code int)

SetStatusCode sets the status to the authority ops list authorities by resource default response

func (*AuthorityOpsListAuthoritiesByResourceDefault) WithPayload

WithPayload adds the payload to the authority ops list authorities by resource default response

func (*AuthorityOpsListAuthoritiesByResourceDefault) WithStatusCode

WithStatusCode adds the status to the authority ops list authorities by resource default response

func (*AuthorityOpsListAuthoritiesByResourceDefault) WriteResponse

WriteResponse to the client

type AuthorityOpsListAuthoritiesByResourceHandler

type AuthorityOpsListAuthoritiesByResourceHandler interface {
	Handle(AuthorityOpsListAuthoritiesByResourceParams, *models.IdentityVerifyResp) middleware.Responder
}

AuthorityOpsListAuthoritiesByResourceHandler interface for that can handle valid authority ops list authorities by resource params

type AuthorityOpsListAuthoritiesByResourceHandlerFunc

type AuthorityOpsListAuthoritiesByResourceHandlerFunc func(AuthorityOpsListAuthoritiesByResourceParams, *models.IdentityVerifyResp) middleware.Responder

AuthorityOpsListAuthoritiesByResourceHandlerFunc turns a function with the right signature into a authority ops list authorities by resource handler

func (AuthorityOpsListAuthoritiesByResourceHandlerFunc) Handle

Handle executing the request and returning a response

type AuthorityOpsListAuthoritiesByResourceOK

type AuthorityOpsListAuthoritiesByResourceOK struct {

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

AuthorityOpsListAuthoritiesByResourceOK A successful response.

swagger:response authorityOpsListAuthoritiesByResourceOK

func NewAuthorityOpsListAuthoritiesByResourceOK

func NewAuthorityOpsListAuthoritiesByResourceOK() *AuthorityOpsListAuthoritiesByResourceOK

NewAuthorityOpsListAuthoritiesByResourceOK creates AuthorityOpsListAuthoritiesByResourceOK with default headers values

func (*AuthorityOpsListAuthoritiesByResourceOK) SetPayload

SetPayload sets the payload to the authority ops list authorities by resource o k response

func (*AuthorityOpsListAuthoritiesByResourceOK) WithPayload

WithPayload adds the payload to the authority ops list authorities by resource o k response

func (*AuthorityOpsListAuthoritiesByResourceOK) WriteResponse

WriteResponse to the client

type AuthorityOpsListAuthoritiesByResourceParams

type AuthorityOpsListAuthoritiesByResourceParams struct {

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

	/*
	  In: query
	*/
	Name *string
	/*
	  In: query
	*/
	Type *string
}

AuthorityOpsListAuthoritiesByResourceParams contains all the bound params for the authority ops list authorities by resource operation typically these are obtained from a http.Request

swagger:parameters AuthorityOps_ListAuthoritiesByResource

func NewAuthorityOpsListAuthoritiesByResourceParams

func NewAuthorityOpsListAuthoritiesByResourceParams() AuthorityOpsListAuthoritiesByResourceParams

NewAuthorityOpsListAuthoritiesByResourceParams creates a new AuthorityOpsListAuthoritiesByResourceParams object

There are no default values defined in the spec.

func (*AuthorityOpsListAuthoritiesByResourceParams) 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 NewAuthorityOpsListAuthoritiesByResourceParams() beforehand.

type AuthorityOpsListAuthoritiesByResourceURL

type AuthorityOpsListAuthoritiesByResourceURL struct {
	Name *string
	Type *string
	// contains filtered or unexported fields
}

AuthorityOpsListAuthoritiesByResourceURL generates an URL for the authority ops list authorities by resource operation

func (*AuthorityOpsListAuthoritiesByResourceURL) Build

Build a url path and query string

func (*AuthorityOpsListAuthoritiesByResourceURL) BuildFull

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

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

func (*AuthorityOpsListAuthoritiesByResourceURL) Must

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

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

String returns the string representation of the path with query string

func (*AuthorityOpsListAuthoritiesByResourceURL) StringFull

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

StringFull returns the string representation of a complete url

func (*AuthorityOpsListAuthoritiesByResourceURL) 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 AuthorityOpsSetAuthorities

type AuthorityOpsSetAuthorities struct {
	Context *middleware.Context
	Handler AuthorityOpsSetAuthoritiesHandler
}
AuthorityOpsSetAuthorities swagger:route POST /authority AuthorityOps authorityOpsSetAuthorities

AuthorityOpsSetAuthorities authority ops set authorities API

func NewAuthorityOpsSetAuthorities

func NewAuthorityOpsSetAuthorities(ctx *middleware.Context, handler AuthorityOpsSetAuthoritiesHandler) *AuthorityOpsSetAuthorities

NewAuthorityOpsSetAuthorities creates a new http.Handler for the authority ops set authorities operation

func (*AuthorityOpsSetAuthorities) ServeHTTP

type AuthorityOpsSetAuthoritiesDefault

type AuthorityOpsSetAuthoritiesDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

AuthorityOpsSetAuthoritiesDefault An unexpected error response.

swagger:response authorityOpsSetAuthoritiesDefault

func NewAuthorityOpsSetAuthoritiesDefault

func NewAuthorityOpsSetAuthoritiesDefault(code int) *AuthorityOpsSetAuthoritiesDefault

NewAuthorityOpsSetAuthoritiesDefault creates AuthorityOpsSetAuthoritiesDefault with default headers values

func (*AuthorityOpsSetAuthoritiesDefault) SetPayload

SetPayload sets the payload to the authority ops set authorities default response

func (*AuthorityOpsSetAuthoritiesDefault) SetStatusCode

func (o *AuthorityOpsSetAuthoritiesDefault) SetStatusCode(code int)

SetStatusCode sets the status to the authority ops set authorities default response

func (*AuthorityOpsSetAuthoritiesDefault) WithPayload

WithPayload adds the payload to the authority ops set authorities default response

func (*AuthorityOpsSetAuthoritiesDefault) WithStatusCode

WithStatusCode adds the status to the authority ops set authorities default response

func (*AuthorityOpsSetAuthoritiesDefault) WriteResponse

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

WriteResponse to the client

type AuthorityOpsSetAuthoritiesHandler

type AuthorityOpsSetAuthoritiesHandler interface {
	Handle(AuthorityOpsSetAuthoritiesParams, *models.IdentityVerifyResp) middleware.Responder
}

AuthorityOpsSetAuthoritiesHandler interface for that can handle valid authority ops set authorities params

type AuthorityOpsSetAuthoritiesHandlerFunc

type AuthorityOpsSetAuthoritiesHandlerFunc func(AuthorityOpsSetAuthoritiesParams, *models.IdentityVerifyResp) middleware.Responder

AuthorityOpsSetAuthoritiesHandlerFunc turns a function with the right signature into a authority ops set authorities handler

func (AuthorityOpsSetAuthoritiesHandlerFunc) Handle

Handle executing the request and returning a response

type AuthorityOpsSetAuthoritiesOK

type AuthorityOpsSetAuthoritiesOK struct {

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

AuthorityOpsSetAuthoritiesOK A successful response.

swagger:response authorityOpsSetAuthoritiesOK

func NewAuthorityOpsSetAuthoritiesOK

func NewAuthorityOpsSetAuthoritiesOK() *AuthorityOpsSetAuthoritiesOK

NewAuthorityOpsSetAuthoritiesOK creates AuthorityOpsSetAuthoritiesOK with default headers values

func (*AuthorityOpsSetAuthoritiesOK) SetPayload

func (o *AuthorityOpsSetAuthoritiesOK) SetPayload(payload *models.ModelCommonResp)

SetPayload sets the payload to the authority ops set authorities o k response

func (*AuthorityOpsSetAuthoritiesOK) WithPayload

WithPayload adds the payload to the authority ops set authorities o k response

func (*AuthorityOpsSetAuthoritiesOK) WriteResponse

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

WriteResponse to the client

type AuthorityOpsSetAuthoritiesParams

type AuthorityOpsSetAuthoritiesParams struct {

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

	/*
	  Required: true
	  In: body
	*/
	Body *models.AuthorityAuthorities
}

AuthorityOpsSetAuthoritiesParams contains all the bound params for the authority ops set authorities operation typically these are obtained from a http.Request

swagger:parameters AuthorityOps_SetAuthorities

func NewAuthorityOpsSetAuthoritiesParams

func NewAuthorityOpsSetAuthoritiesParams() AuthorityOpsSetAuthoritiesParams

NewAuthorityOpsSetAuthoritiesParams creates a new AuthorityOpsSetAuthoritiesParams object

There are no default values defined in the spec.

func (*AuthorityOpsSetAuthoritiesParams) 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 NewAuthorityOpsSetAuthoritiesParams() beforehand.

type AuthorityOpsSetAuthoritiesURL

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

AuthorityOpsSetAuthoritiesURL generates an URL for the authority ops set authorities operation

func (*AuthorityOpsSetAuthoritiesURL) Build

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

Build a url path and query string

func (*AuthorityOpsSetAuthoritiesURL) BuildFull

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

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

func (*AuthorityOpsSetAuthoritiesURL) Must

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

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

func (*AuthorityOpsSetAuthoritiesURL) SetBasePath

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

String returns the string representation of the path with query string

func (*AuthorityOpsSetAuthoritiesURL) StringFull

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

StringFull returns the string representation of a complete url

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

Jump to

Keyboard shortcuts

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