Documentation ¶
Index ¶
- type Client
- type ClientOption
- type ClientService
- type DeleteAuthorizationServerBadRequest
- func (o *DeleteAuthorizationServerBadRequest) Code() int
- func (o *DeleteAuthorizationServerBadRequest) Error() string
- func (o *DeleteAuthorizationServerBadRequest) GetPayload() *models.Error
- func (o *DeleteAuthorizationServerBadRequest) IsClientError() bool
- func (o *DeleteAuthorizationServerBadRequest) IsCode(code int) bool
- func (o *DeleteAuthorizationServerBadRequest) IsRedirect() bool
- func (o *DeleteAuthorizationServerBadRequest) IsServerError() bool
- func (o *DeleteAuthorizationServerBadRequest) IsSuccess() bool
- func (o *DeleteAuthorizationServerBadRequest) String() string
- type DeleteAuthorizationServerForbidden
- func (o *DeleteAuthorizationServerForbidden) Code() int
- func (o *DeleteAuthorizationServerForbidden) Error() string
- func (o *DeleteAuthorizationServerForbidden) GetPayload() *models.Error
- func (o *DeleteAuthorizationServerForbidden) IsClientError() bool
- func (o *DeleteAuthorizationServerForbidden) IsCode(code int) bool
- func (o *DeleteAuthorizationServerForbidden) IsRedirect() bool
- func (o *DeleteAuthorizationServerForbidden) IsServerError() bool
- func (o *DeleteAuthorizationServerForbidden) IsSuccess() bool
- func (o *DeleteAuthorizationServerForbidden) String() string
- type DeleteAuthorizationServerNoContent
- func (o *DeleteAuthorizationServerNoContent) Code() int
- func (o *DeleteAuthorizationServerNoContent) Error() string
- func (o *DeleteAuthorizationServerNoContent) IsClientError() bool
- func (o *DeleteAuthorizationServerNoContent) IsCode(code int) bool
- func (o *DeleteAuthorizationServerNoContent) IsRedirect() bool
- func (o *DeleteAuthorizationServerNoContent) IsServerError() bool
- func (o *DeleteAuthorizationServerNoContent) IsSuccess() bool
- func (o *DeleteAuthorizationServerNoContent) String() string
- type DeleteAuthorizationServerNotFound
- func (o *DeleteAuthorizationServerNotFound) Code() int
- func (o *DeleteAuthorizationServerNotFound) Error() string
- func (o *DeleteAuthorizationServerNotFound) GetPayload() *models.Error
- func (o *DeleteAuthorizationServerNotFound) IsClientError() bool
- func (o *DeleteAuthorizationServerNotFound) IsCode(code int) bool
- func (o *DeleteAuthorizationServerNotFound) IsRedirect() bool
- func (o *DeleteAuthorizationServerNotFound) IsServerError() bool
- func (o *DeleteAuthorizationServerNotFound) IsSuccess() bool
- func (o *DeleteAuthorizationServerNotFound) String() string
- type DeleteAuthorizationServerParams
- func NewDeleteAuthorizationServerParams() *DeleteAuthorizationServerParams
- func NewDeleteAuthorizationServerParamsWithContext(ctx context.Context) *DeleteAuthorizationServerParams
- func NewDeleteAuthorizationServerParamsWithHTTPClient(client *http.Client) *DeleteAuthorizationServerParams
- func NewDeleteAuthorizationServerParamsWithTimeout(timeout time.Duration) *DeleteAuthorizationServerParams
- func (o *DeleteAuthorizationServerParams) SetContext(ctx context.Context)
- func (o *DeleteAuthorizationServerParams) SetDefaults()
- func (o *DeleteAuthorizationServerParams) SetHTTPClient(client *http.Client)
- func (o *DeleteAuthorizationServerParams) SetIfMatch(ifMatch *string)
- func (o *DeleteAuthorizationServerParams) SetTimeout(timeout time.Duration)
- func (o *DeleteAuthorizationServerParams) SetWid(wid string)
- func (o *DeleteAuthorizationServerParams) WithContext(ctx context.Context) *DeleteAuthorizationServerParams
- func (o *DeleteAuthorizationServerParams) WithDefaults() *DeleteAuthorizationServerParams
- func (o *DeleteAuthorizationServerParams) WithHTTPClient(client *http.Client) *DeleteAuthorizationServerParams
- func (o *DeleteAuthorizationServerParams) WithIfMatch(ifMatch *string) *DeleteAuthorizationServerParams
- func (o *DeleteAuthorizationServerParams) WithTimeout(timeout time.Duration) *DeleteAuthorizationServerParams
- func (o *DeleteAuthorizationServerParams) WithWid(wid string) *DeleteAuthorizationServerParams
- func (o *DeleteAuthorizationServerParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type DeleteAuthorizationServerReader
- type DeleteAuthorizationServerTooManyRequests
- func (o *DeleteAuthorizationServerTooManyRequests) Code() int
- func (o *DeleteAuthorizationServerTooManyRequests) Error() string
- func (o *DeleteAuthorizationServerTooManyRequests) GetPayload() *models.Error
- func (o *DeleteAuthorizationServerTooManyRequests) IsClientError() bool
- func (o *DeleteAuthorizationServerTooManyRequests) IsCode(code int) bool
- func (o *DeleteAuthorizationServerTooManyRequests) IsRedirect() bool
- func (o *DeleteAuthorizationServerTooManyRequests) IsServerError() bool
- func (o *DeleteAuthorizationServerTooManyRequests) IsSuccess() bool
- func (o *DeleteAuthorizationServerTooManyRequests) String() string
- type DeleteAuthorizationServerUnauthorized
- func (o *DeleteAuthorizationServerUnauthorized) Code() int
- func (o *DeleteAuthorizationServerUnauthorized) Error() string
- func (o *DeleteAuthorizationServerUnauthorized) GetPayload() *models.Error
- func (o *DeleteAuthorizationServerUnauthorized) IsClientError() bool
- func (o *DeleteAuthorizationServerUnauthorized) IsCode(code int) bool
- func (o *DeleteAuthorizationServerUnauthorized) IsRedirect() bool
- func (o *DeleteAuthorizationServerUnauthorized) IsServerError() bool
- func (o *DeleteAuthorizationServerUnauthorized) IsSuccess() bool
- func (o *DeleteAuthorizationServerUnauthorized) String() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client for servers API
func (*Client) DeleteAuthorizationServer ¶
func (a *Client) DeleteAuthorizationServer(params *DeleteAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAuthorizationServerNoContent, error)
DeleteAuthorizationServer deletes authorization server
Delete authorization server.
func (*Client) SetTransport ¶
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
type ClientOption ¶
type ClientOption func(*runtime.ClientOperation)
ClientOption may be used to customize the behavior of Client methods.
type ClientService ¶
type ClientService interface { DeleteAuthorizationServer(params *DeleteAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAuthorizationServerNoContent, error) SetTransport(transport runtime.ClientTransport) }
ClientService is the interface for Client methods
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService
New creates a new servers API client.
func NewClientWithBasicAuth ¶
func NewClientWithBasicAuth(host, basePath, scheme, user, password string) ClientService
New creates a new servers API client with basic auth credentials. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - user: user for basic authentication header. - password: password for basic authentication header.
func NewClientWithBearerToken ¶
func NewClientWithBearerToken(host, basePath, scheme, bearerToken string) ClientService
New creates a new servers API client with a bearer token for authentication. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - bearerToken: bearer token for Bearer authentication header.
type DeleteAuthorizationServerBadRequest ¶
DeleteAuthorizationServerBadRequest describes a response with status code 400, with default header values.
Bad request
func NewDeleteAuthorizationServerBadRequest ¶
func NewDeleteAuthorizationServerBadRequest() *DeleteAuthorizationServerBadRequest
NewDeleteAuthorizationServerBadRequest creates a DeleteAuthorizationServerBadRequest with default headers values
func (*DeleteAuthorizationServerBadRequest) Code ¶
func (o *DeleteAuthorizationServerBadRequest) Code() int
Code gets the status code for the delete authorization server bad request response
func (*DeleteAuthorizationServerBadRequest) Error ¶
func (o *DeleteAuthorizationServerBadRequest) Error() string
func (*DeleteAuthorizationServerBadRequest) GetPayload ¶
func (o *DeleteAuthorizationServerBadRequest) GetPayload() *models.Error
func (*DeleteAuthorizationServerBadRequest) IsClientError ¶
func (o *DeleteAuthorizationServerBadRequest) IsClientError() bool
IsClientError returns true when this delete authorization server bad request response has a 4xx status code
func (*DeleteAuthorizationServerBadRequest) IsCode ¶
func (o *DeleteAuthorizationServerBadRequest) IsCode(code int) bool
IsCode returns true when this delete authorization server bad request response a status code equal to that given
func (*DeleteAuthorizationServerBadRequest) IsRedirect ¶
func (o *DeleteAuthorizationServerBadRequest) IsRedirect() bool
IsRedirect returns true when this delete authorization server bad request response has a 3xx status code
func (*DeleteAuthorizationServerBadRequest) IsServerError ¶
func (o *DeleteAuthorizationServerBadRequest) IsServerError() bool
IsServerError returns true when this delete authorization server bad request response has a 5xx status code
func (*DeleteAuthorizationServerBadRequest) IsSuccess ¶
func (o *DeleteAuthorizationServerBadRequest) IsSuccess() bool
IsSuccess returns true when this delete authorization server bad request response has a 2xx status code
func (*DeleteAuthorizationServerBadRequest) String ¶
func (o *DeleteAuthorizationServerBadRequest) String() string
type DeleteAuthorizationServerForbidden ¶
DeleteAuthorizationServerForbidden describes a response with status code 403, with default header values.
Forbidden
func NewDeleteAuthorizationServerForbidden ¶
func NewDeleteAuthorizationServerForbidden() *DeleteAuthorizationServerForbidden
NewDeleteAuthorizationServerForbidden creates a DeleteAuthorizationServerForbidden with default headers values
func (*DeleteAuthorizationServerForbidden) Code ¶
func (o *DeleteAuthorizationServerForbidden) Code() int
Code gets the status code for the delete authorization server forbidden response
func (*DeleteAuthorizationServerForbidden) Error ¶
func (o *DeleteAuthorizationServerForbidden) Error() string
func (*DeleteAuthorizationServerForbidden) GetPayload ¶
func (o *DeleteAuthorizationServerForbidden) GetPayload() *models.Error
func (*DeleteAuthorizationServerForbidden) IsClientError ¶
func (o *DeleteAuthorizationServerForbidden) IsClientError() bool
IsClientError returns true when this delete authorization server forbidden response has a 4xx status code
func (*DeleteAuthorizationServerForbidden) IsCode ¶
func (o *DeleteAuthorizationServerForbidden) IsCode(code int) bool
IsCode returns true when this delete authorization server forbidden response a status code equal to that given
func (*DeleteAuthorizationServerForbidden) IsRedirect ¶
func (o *DeleteAuthorizationServerForbidden) IsRedirect() bool
IsRedirect returns true when this delete authorization server forbidden response has a 3xx status code
func (*DeleteAuthorizationServerForbidden) IsServerError ¶
func (o *DeleteAuthorizationServerForbidden) IsServerError() bool
IsServerError returns true when this delete authorization server forbidden response has a 5xx status code
func (*DeleteAuthorizationServerForbidden) IsSuccess ¶
func (o *DeleteAuthorizationServerForbidden) IsSuccess() bool
IsSuccess returns true when this delete authorization server forbidden response has a 2xx status code
func (*DeleteAuthorizationServerForbidden) String ¶
func (o *DeleteAuthorizationServerForbidden) String() string
type DeleteAuthorizationServerNoContent ¶
type DeleteAuthorizationServerNoContent struct { }
DeleteAuthorizationServerNoContent describes a response with status code 204, with default header values.
Authorization server has been deleted
func NewDeleteAuthorizationServerNoContent ¶
func NewDeleteAuthorizationServerNoContent() *DeleteAuthorizationServerNoContent
NewDeleteAuthorizationServerNoContent creates a DeleteAuthorizationServerNoContent with default headers values
func (*DeleteAuthorizationServerNoContent) Code ¶
func (o *DeleteAuthorizationServerNoContent) Code() int
Code gets the status code for the delete authorization server no content response
func (*DeleteAuthorizationServerNoContent) Error ¶
func (o *DeleteAuthorizationServerNoContent) Error() string
func (*DeleteAuthorizationServerNoContent) IsClientError ¶
func (o *DeleteAuthorizationServerNoContent) IsClientError() bool
IsClientError returns true when this delete authorization server no content response has a 4xx status code
func (*DeleteAuthorizationServerNoContent) IsCode ¶
func (o *DeleteAuthorizationServerNoContent) IsCode(code int) bool
IsCode returns true when this delete authorization server no content response a status code equal to that given
func (*DeleteAuthorizationServerNoContent) IsRedirect ¶
func (o *DeleteAuthorizationServerNoContent) IsRedirect() bool
IsRedirect returns true when this delete authorization server no content response has a 3xx status code
func (*DeleteAuthorizationServerNoContent) IsServerError ¶
func (o *DeleteAuthorizationServerNoContent) IsServerError() bool
IsServerError returns true when this delete authorization server no content response has a 5xx status code
func (*DeleteAuthorizationServerNoContent) IsSuccess ¶
func (o *DeleteAuthorizationServerNoContent) IsSuccess() bool
IsSuccess returns true when this delete authorization server no content response has a 2xx status code
func (*DeleteAuthorizationServerNoContent) String ¶
func (o *DeleteAuthorizationServerNoContent) String() string
type DeleteAuthorizationServerNotFound ¶
DeleteAuthorizationServerNotFound describes a response with status code 404, with default header values.
Not found
func NewDeleteAuthorizationServerNotFound ¶
func NewDeleteAuthorizationServerNotFound() *DeleteAuthorizationServerNotFound
NewDeleteAuthorizationServerNotFound creates a DeleteAuthorizationServerNotFound with default headers values
func (*DeleteAuthorizationServerNotFound) Code ¶
func (o *DeleteAuthorizationServerNotFound) Code() int
Code gets the status code for the delete authorization server not found response
func (*DeleteAuthorizationServerNotFound) Error ¶
func (o *DeleteAuthorizationServerNotFound) Error() string
func (*DeleteAuthorizationServerNotFound) GetPayload ¶
func (o *DeleteAuthorizationServerNotFound) GetPayload() *models.Error
func (*DeleteAuthorizationServerNotFound) IsClientError ¶
func (o *DeleteAuthorizationServerNotFound) IsClientError() bool
IsClientError returns true when this delete authorization server not found response has a 4xx status code
func (*DeleteAuthorizationServerNotFound) IsCode ¶
func (o *DeleteAuthorizationServerNotFound) IsCode(code int) bool
IsCode returns true when this delete authorization server not found response a status code equal to that given
func (*DeleteAuthorizationServerNotFound) IsRedirect ¶
func (o *DeleteAuthorizationServerNotFound) IsRedirect() bool
IsRedirect returns true when this delete authorization server not found response has a 3xx status code
func (*DeleteAuthorizationServerNotFound) IsServerError ¶
func (o *DeleteAuthorizationServerNotFound) IsServerError() bool
IsServerError returns true when this delete authorization server not found response has a 5xx status code
func (*DeleteAuthorizationServerNotFound) IsSuccess ¶
func (o *DeleteAuthorizationServerNotFound) IsSuccess() bool
IsSuccess returns true when this delete authorization server not found response has a 2xx status code
func (*DeleteAuthorizationServerNotFound) String ¶
func (o *DeleteAuthorizationServerNotFound) String() string
type DeleteAuthorizationServerParams ¶
type DeleteAuthorizationServerParams struct { /* IfMatch. A server will only return requested resources if the resource matches one of the listed ETag value Format: etag */ IfMatch *string /* Wid. Workspace id Default: "default" */ Wid string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
DeleteAuthorizationServerParams contains all the parameters to send to the API endpoint
for the delete authorization server operation. Typically these are written to a http.Request.
func NewDeleteAuthorizationServerParams ¶
func NewDeleteAuthorizationServerParams() *DeleteAuthorizationServerParams
NewDeleteAuthorizationServerParams creates a new DeleteAuthorizationServerParams object, with the default timeout for this client.
Default values are not hydrated, since defaults are normally applied by the API server side.
To enforce default values in parameter, use SetDefaults or WithDefaults.
func NewDeleteAuthorizationServerParamsWithContext ¶
func NewDeleteAuthorizationServerParamsWithContext(ctx context.Context) *DeleteAuthorizationServerParams
NewDeleteAuthorizationServerParamsWithContext creates a new DeleteAuthorizationServerParams object with the ability to set a context for a request.
func NewDeleteAuthorizationServerParamsWithHTTPClient ¶
func NewDeleteAuthorizationServerParamsWithHTTPClient(client *http.Client) *DeleteAuthorizationServerParams
NewDeleteAuthorizationServerParamsWithHTTPClient creates a new DeleteAuthorizationServerParams object with the ability to set a custom HTTPClient for a request.
func NewDeleteAuthorizationServerParamsWithTimeout ¶
func NewDeleteAuthorizationServerParamsWithTimeout(timeout time.Duration) *DeleteAuthorizationServerParams
NewDeleteAuthorizationServerParamsWithTimeout creates a new DeleteAuthorizationServerParams object with the ability to set a timeout on a request.
func (*DeleteAuthorizationServerParams) SetContext ¶
func (o *DeleteAuthorizationServerParams) SetContext(ctx context.Context)
SetContext adds the context to the delete authorization server params
func (*DeleteAuthorizationServerParams) SetDefaults ¶
func (o *DeleteAuthorizationServerParams) SetDefaults()
SetDefaults hydrates default values in the delete authorization server params (not the query body).
All values with no default are reset to their zero value.
func (*DeleteAuthorizationServerParams) SetHTTPClient ¶
func (o *DeleteAuthorizationServerParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the delete authorization server params
func (*DeleteAuthorizationServerParams) SetIfMatch ¶
func (o *DeleteAuthorizationServerParams) SetIfMatch(ifMatch *string)
SetIfMatch adds the ifMatch to the delete authorization server params
func (*DeleteAuthorizationServerParams) SetTimeout ¶
func (o *DeleteAuthorizationServerParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the delete authorization server params
func (*DeleteAuthorizationServerParams) SetWid ¶
func (o *DeleteAuthorizationServerParams) SetWid(wid string)
SetWid adds the wid to the delete authorization server params
func (*DeleteAuthorizationServerParams) WithContext ¶
func (o *DeleteAuthorizationServerParams) WithContext(ctx context.Context) *DeleteAuthorizationServerParams
WithContext adds the context to the delete authorization server params
func (*DeleteAuthorizationServerParams) WithDefaults ¶
func (o *DeleteAuthorizationServerParams) WithDefaults() *DeleteAuthorizationServerParams
WithDefaults hydrates default values in the delete authorization server params (not the query body).
All values with no default are reset to their zero value.
func (*DeleteAuthorizationServerParams) WithHTTPClient ¶
func (o *DeleteAuthorizationServerParams) WithHTTPClient(client *http.Client) *DeleteAuthorizationServerParams
WithHTTPClient adds the HTTPClient to the delete authorization server params
func (*DeleteAuthorizationServerParams) WithIfMatch ¶
func (o *DeleteAuthorizationServerParams) WithIfMatch(ifMatch *string) *DeleteAuthorizationServerParams
WithIfMatch adds the ifMatch to the delete authorization server params
func (*DeleteAuthorizationServerParams) WithTimeout ¶
func (o *DeleteAuthorizationServerParams) WithTimeout(timeout time.Duration) *DeleteAuthorizationServerParams
WithTimeout adds the timeout to the delete authorization server params
func (*DeleteAuthorizationServerParams) WithWid ¶
func (o *DeleteAuthorizationServerParams) WithWid(wid string) *DeleteAuthorizationServerParams
WithWid adds the wid to the delete authorization server params
func (*DeleteAuthorizationServerParams) WriteToRequest ¶
func (o *DeleteAuthorizationServerParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type DeleteAuthorizationServerReader ¶
type DeleteAuthorizationServerReader struct {
// contains filtered or unexported fields
}
DeleteAuthorizationServerReader is a Reader for the DeleteAuthorizationServer structure.
func (*DeleteAuthorizationServerReader) ReadResponse ¶
func (o *DeleteAuthorizationServerReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type DeleteAuthorizationServerTooManyRequests ¶
DeleteAuthorizationServerTooManyRequests describes a response with status code 429, with default header values.
Too many requests
func NewDeleteAuthorizationServerTooManyRequests ¶
func NewDeleteAuthorizationServerTooManyRequests() *DeleteAuthorizationServerTooManyRequests
NewDeleteAuthorizationServerTooManyRequests creates a DeleteAuthorizationServerTooManyRequests with default headers values
func (*DeleteAuthorizationServerTooManyRequests) Code ¶
func (o *DeleteAuthorizationServerTooManyRequests) Code() int
Code gets the status code for the delete authorization server too many requests response
func (*DeleteAuthorizationServerTooManyRequests) Error ¶
func (o *DeleteAuthorizationServerTooManyRequests) Error() string
func (*DeleteAuthorizationServerTooManyRequests) GetPayload ¶
func (o *DeleteAuthorizationServerTooManyRequests) GetPayload() *models.Error
func (*DeleteAuthorizationServerTooManyRequests) IsClientError ¶
func (o *DeleteAuthorizationServerTooManyRequests) IsClientError() bool
IsClientError returns true when this delete authorization server too many requests response has a 4xx status code
func (*DeleteAuthorizationServerTooManyRequests) IsCode ¶
func (o *DeleteAuthorizationServerTooManyRequests) IsCode(code int) bool
IsCode returns true when this delete authorization server too many requests response a status code equal to that given
func (*DeleteAuthorizationServerTooManyRequests) IsRedirect ¶
func (o *DeleteAuthorizationServerTooManyRequests) IsRedirect() bool
IsRedirect returns true when this delete authorization server too many requests response has a 3xx status code
func (*DeleteAuthorizationServerTooManyRequests) IsServerError ¶
func (o *DeleteAuthorizationServerTooManyRequests) IsServerError() bool
IsServerError returns true when this delete authorization server too many requests response has a 5xx status code
func (*DeleteAuthorizationServerTooManyRequests) IsSuccess ¶
func (o *DeleteAuthorizationServerTooManyRequests) IsSuccess() bool
IsSuccess returns true when this delete authorization server too many requests response has a 2xx status code
func (*DeleteAuthorizationServerTooManyRequests) String ¶
func (o *DeleteAuthorizationServerTooManyRequests) String() string
type DeleteAuthorizationServerUnauthorized ¶
type DeleteAuthorizationServerUnauthorized struct {
}DeleteAuthorizationServerUnauthorized describes a response with status code 401, with default header values.
Unauthorized
func NewDeleteAuthorizationServerUnauthorized ¶
func NewDeleteAuthorizationServerUnauthorized() *DeleteAuthorizationServerUnauthorized
NewDeleteAuthorizationServerUnauthorized creates a DeleteAuthorizationServerUnauthorized with default headers values
func (*DeleteAuthorizationServerUnauthorized) Code ¶
func (o *DeleteAuthorizationServerUnauthorized) Code() int
Code gets the status code for the delete authorization server unauthorized response
func (*DeleteAuthorizationServerUnauthorized) Error ¶
func (o *DeleteAuthorizationServerUnauthorized) Error() string
func (*DeleteAuthorizationServerUnauthorized) GetPayload ¶
func (o *DeleteAuthorizationServerUnauthorized) GetPayload() *models.Error
func (*DeleteAuthorizationServerUnauthorized) IsClientError ¶
func (o *DeleteAuthorizationServerUnauthorized) IsClientError() bool
IsClientError returns true when this delete authorization server unauthorized response has a 4xx status code
func (*DeleteAuthorizationServerUnauthorized) IsCode ¶
func (o *DeleteAuthorizationServerUnauthorized) IsCode(code int) bool
IsCode returns true when this delete authorization server unauthorized response a status code equal to that given
func (*DeleteAuthorizationServerUnauthorized) IsRedirect ¶
func (o *DeleteAuthorizationServerUnauthorized) IsRedirect() bool
IsRedirect returns true when this delete authorization server unauthorized response has a 3xx status code
func (*DeleteAuthorizationServerUnauthorized) IsServerError ¶
func (o *DeleteAuthorizationServerUnauthorized) IsServerError() bool
IsServerError returns true when this delete authorization server unauthorized response has a 5xx status code
func (*DeleteAuthorizationServerUnauthorized) IsSuccess ¶
func (o *DeleteAuthorizationServerUnauthorized) IsSuccess() bool
IsSuccess returns true when this delete authorization server unauthorized response has a 2xx status code
func (*DeleteAuthorizationServerUnauthorized) String ¶
func (o *DeleteAuthorizationServerUnauthorized) String() string