servers

package
v0.0.0-...-7b99a6d Latest Latest
Warning

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

Go to latest
Published: Jan 29, 2024 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BindServerForbidden

type BindServerForbidden struct {
	Payload *models.Error
}

BindServerForbidden describes a response with status code 403, with default header values.

Forbidden

func NewBindServerForbidden

func NewBindServerForbidden() *BindServerForbidden

NewBindServerForbidden creates a BindServerForbidden with default headers values

func (*BindServerForbidden) Code

func (o *BindServerForbidden) Code() int

Code gets the status code for the bind server forbidden response

func (*BindServerForbidden) Error

func (o *BindServerForbidden) Error() string

func (*BindServerForbidden) GetPayload

func (o *BindServerForbidden) GetPayload() *models.Error

func (*BindServerForbidden) IsClientError

func (o *BindServerForbidden) IsClientError() bool

IsClientError returns true when this bind server forbidden response has a 4xx status code

func (*BindServerForbidden) IsCode

func (o *BindServerForbidden) IsCode(code int) bool

IsCode returns true when this bind server forbidden response a status code equal to that given

func (*BindServerForbidden) IsRedirect

func (o *BindServerForbidden) IsRedirect() bool

IsRedirect returns true when this bind server forbidden response has a 3xx status code

func (*BindServerForbidden) IsServerError

func (o *BindServerForbidden) IsServerError() bool

IsServerError returns true when this bind server forbidden response has a 5xx status code

func (*BindServerForbidden) IsSuccess

func (o *BindServerForbidden) IsSuccess() bool

IsSuccess returns true when this bind server forbidden response has a 2xx status code

func (*BindServerForbidden) String

func (o *BindServerForbidden) String() string

type BindServerNotFound

type BindServerNotFound struct {
	Payload *models.Error
}

BindServerNotFound describes a response with status code 404, with default header values.

Not found

func NewBindServerNotFound

func NewBindServerNotFound() *BindServerNotFound

NewBindServerNotFound creates a BindServerNotFound with default headers values

func (*BindServerNotFound) Code

func (o *BindServerNotFound) Code() int

Code gets the status code for the bind server not found response

func (*BindServerNotFound) Error

func (o *BindServerNotFound) Error() string

func (*BindServerNotFound) GetPayload

func (o *BindServerNotFound) GetPayload() *models.Error

func (*BindServerNotFound) IsClientError

func (o *BindServerNotFound) IsClientError() bool

IsClientError returns true when this bind server not found response has a 4xx status code

func (*BindServerNotFound) IsCode

func (o *BindServerNotFound) IsCode(code int) bool

IsCode returns true when this bind server not found response a status code equal to that given

func (*BindServerNotFound) IsRedirect

func (o *BindServerNotFound) IsRedirect() bool

IsRedirect returns true when this bind server not found response has a 3xx status code

func (*BindServerNotFound) IsServerError

func (o *BindServerNotFound) IsServerError() bool

IsServerError returns true when this bind server not found response has a 5xx status code

func (*BindServerNotFound) IsSuccess

func (o *BindServerNotFound) IsSuccess() bool

IsSuccess returns true when this bind server not found response has a 2xx status code

func (*BindServerNotFound) String

func (o *BindServerNotFound) String() string

type BindServerOK

type BindServerOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerToServer
}

BindServerOK describes a response with status code 200, with default header values.

Server to server binding

func NewBindServerOK

func NewBindServerOK() *BindServerOK

NewBindServerOK creates a BindServerOK with default headers values

func (*BindServerOK) Code

func (o *BindServerOK) Code() int

Code gets the status code for the bind server o k response

func (*BindServerOK) Error

func (o *BindServerOK) Error() string

func (*BindServerOK) GetPayload

func (o *BindServerOK) GetPayload() *models.ServerToServer

func (*BindServerOK) IsClientError

func (o *BindServerOK) IsClientError() bool

IsClientError returns true when this bind server o k response has a 4xx status code

func (*BindServerOK) IsCode

func (o *BindServerOK) IsCode(code int) bool

IsCode returns true when this bind server o k response a status code equal to that given

func (*BindServerOK) IsRedirect

func (o *BindServerOK) IsRedirect() bool

IsRedirect returns true when this bind server o k response has a 3xx status code

func (*BindServerOK) IsServerError

func (o *BindServerOK) IsServerError() bool

IsServerError returns true when this bind server o k response has a 5xx status code

func (*BindServerOK) IsSuccess

func (o *BindServerOK) IsSuccess() bool

IsSuccess returns true when this bind server o k response has a 2xx status code

func (*BindServerOK) String

func (o *BindServerOK) String() string

type BindServerParams

type BindServerParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Rid.

	   Dependent server id

	   Default: "default"
	*/
	Rid string

	/* Wid.

	   Workspace id

	   Default: "default"
	*/
	Wid string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

BindServerParams contains all the parameters to send to the API endpoint

for the bind server operation.

Typically these are written to a http.Request.

func NewBindServerParams

func NewBindServerParams() *BindServerParams

NewBindServerParams creates a new BindServerParams 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 NewBindServerParamsWithContext

func NewBindServerParamsWithContext(ctx context.Context) *BindServerParams

NewBindServerParamsWithContext creates a new BindServerParams object with the ability to set a context for a request.

func NewBindServerParamsWithHTTPClient

func NewBindServerParamsWithHTTPClient(client *http.Client) *BindServerParams

NewBindServerParamsWithHTTPClient creates a new BindServerParams object with the ability to set a custom HTTPClient for a request.

func NewBindServerParamsWithTimeout

func NewBindServerParamsWithTimeout(timeout time.Duration) *BindServerParams

NewBindServerParamsWithTimeout creates a new BindServerParams object with the ability to set a timeout on a request.

func (*BindServerParams) SetContext

func (o *BindServerParams) SetContext(ctx context.Context)

SetContext adds the context to the bind server params

func (*BindServerParams) SetDefaults

func (o *BindServerParams) SetDefaults()

SetDefaults hydrates default values in the bind server params (not the query body).

All values with no default are reset to their zero value.

func (*BindServerParams) SetHTTPClient

func (o *BindServerParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the bind server params

func (*BindServerParams) SetIfMatch

func (o *BindServerParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the bind server params

func (*BindServerParams) SetRid

func (o *BindServerParams) SetRid(rid string)

SetRid adds the rid to the bind server params

func (*BindServerParams) SetTimeout

func (o *BindServerParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the bind server params

func (*BindServerParams) SetWid

func (o *BindServerParams) SetWid(wid string)

SetWid adds the wid to the bind server params

func (*BindServerParams) WithContext

func (o *BindServerParams) WithContext(ctx context.Context) *BindServerParams

WithContext adds the context to the bind server params

func (*BindServerParams) WithDefaults

func (o *BindServerParams) WithDefaults() *BindServerParams

WithDefaults hydrates default values in the bind server params (not the query body).

All values with no default are reset to their zero value.

func (*BindServerParams) WithHTTPClient

func (o *BindServerParams) WithHTTPClient(client *http.Client) *BindServerParams

WithHTTPClient adds the HTTPClient to the bind server params

func (*BindServerParams) WithIfMatch

func (o *BindServerParams) WithIfMatch(ifMatch *string) *BindServerParams

WithIfMatch adds the ifMatch to the bind server params

func (*BindServerParams) WithRid

func (o *BindServerParams) WithRid(rid string) *BindServerParams

WithRid adds the rid to the bind server params

func (*BindServerParams) WithTimeout

func (o *BindServerParams) WithTimeout(timeout time.Duration) *BindServerParams

WithTimeout adds the timeout to the bind server params

func (*BindServerParams) WithWid

func (o *BindServerParams) WithWid(wid string) *BindServerParams

WithWid adds the wid to the bind server params

func (*BindServerParams) WriteToRequest

func (o *BindServerParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type BindServerReader

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

BindServerReader is a Reader for the BindServer structure.

func (*BindServerReader) ReadResponse

func (o *BindServerReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type BindServerThemeForbidden

type BindServerThemeForbidden struct {
	Payload *models.Error
}

BindServerThemeForbidden describes a response with status code 403, with default header values.

Forbidden

func NewBindServerThemeForbidden

func NewBindServerThemeForbidden() *BindServerThemeForbidden

NewBindServerThemeForbidden creates a BindServerThemeForbidden with default headers values

func (*BindServerThemeForbidden) Code

func (o *BindServerThemeForbidden) Code() int

Code gets the status code for the bind server theme forbidden response

func (*BindServerThemeForbidden) Error

func (o *BindServerThemeForbidden) Error() string

func (*BindServerThemeForbidden) GetPayload

func (o *BindServerThemeForbidden) GetPayload() *models.Error

func (*BindServerThemeForbidden) IsClientError

func (o *BindServerThemeForbidden) IsClientError() bool

IsClientError returns true when this bind server theme forbidden response has a 4xx status code

func (*BindServerThemeForbidden) IsCode

func (o *BindServerThemeForbidden) IsCode(code int) bool

IsCode returns true when this bind server theme forbidden response a status code equal to that given

func (*BindServerThemeForbidden) IsRedirect

func (o *BindServerThemeForbidden) IsRedirect() bool

IsRedirect returns true when this bind server theme forbidden response has a 3xx status code

func (*BindServerThemeForbidden) IsServerError

func (o *BindServerThemeForbidden) IsServerError() bool

IsServerError returns true when this bind server theme forbidden response has a 5xx status code

func (*BindServerThemeForbidden) IsSuccess

func (o *BindServerThemeForbidden) IsSuccess() bool

IsSuccess returns true when this bind server theme forbidden response has a 2xx status code

func (*BindServerThemeForbidden) String

func (o *BindServerThemeForbidden) String() string

type BindServerThemeNotFound

type BindServerThemeNotFound struct {
	Payload *models.Error
}

BindServerThemeNotFound describes a response with status code 404, with default header values.

Not found

func NewBindServerThemeNotFound

func NewBindServerThemeNotFound() *BindServerThemeNotFound

NewBindServerThemeNotFound creates a BindServerThemeNotFound with default headers values

func (*BindServerThemeNotFound) Code

func (o *BindServerThemeNotFound) Code() int

Code gets the status code for the bind server theme not found response

func (*BindServerThemeNotFound) Error

func (o *BindServerThemeNotFound) Error() string

func (*BindServerThemeNotFound) GetPayload

func (o *BindServerThemeNotFound) GetPayload() *models.Error

func (*BindServerThemeNotFound) IsClientError

func (o *BindServerThemeNotFound) IsClientError() bool

IsClientError returns true when this bind server theme not found response has a 4xx status code

func (*BindServerThemeNotFound) IsCode

func (o *BindServerThemeNotFound) IsCode(code int) bool

IsCode returns true when this bind server theme not found response a status code equal to that given

func (*BindServerThemeNotFound) IsRedirect

func (o *BindServerThemeNotFound) IsRedirect() bool

IsRedirect returns true when this bind server theme not found response has a 3xx status code

func (*BindServerThemeNotFound) IsServerError

func (o *BindServerThemeNotFound) IsServerError() bool

IsServerError returns true when this bind server theme not found response has a 5xx status code

func (*BindServerThemeNotFound) IsSuccess

func (o *BindServerThemeNotFound) IsSuccess() bool

IsSuccess returns true when this bind server theme not found response has a 2xx status code

func (*BindServerThemeNotFound) String

func (o *BindServerThemeNotFound) String() string

type BindServerThemeOK

type BindServerThemeOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerToTheme
}

BindServerThemeOK describes a response with status code 200, with default header values.

Server to Theme binding

func NewBindServerThemeOK

func NewBindServerThemeOK() *BindServerThemeOK

NewBindServerThemeOK creates a BindServerThemeOK with default headers values

func (*BindServerThemeOK) Code

func (o *BindServerThemeOK) Code() int

Code gets the status code for the bind server theme o k response

func (*BindServerThemeOK) Error

func (o *BindServerThemeOK) Error() string

func (*BindServerThemeOK) GetPayload

func (o *BindServerThemeOK) GetPayload() *models.ServerToTheme

func (*BindServerThemeOK) IsClientError

func (o *BindServerThemeOK) IsClientError() bool

IsClientError returns true when this bind server theme o k response has a 4xx status code

func (*BindServerThemeOK) IsCode

func (o *BindServerThemeOK) IsCode(code int) bool

IsCode returns true when this bind server theme o k response a status code equal to that given

func (*BindServerThemeOK) IsRedirect

func (o *BindServerThemeOK) IsRedirect() bool

IsRedirect returns true when this bind server theme o k response has a 3xx status code

func (*BindServerThemeOK) IsServerError

func (o *BindServerThemeOK) IsServerError() bool

IsServerError returns true when this bind server theme o k response has a 5xx status code

func (*BindServerThemeOK) IsSuccess

func (o *BindServerThemeOK) IsSuccess() bool

IsSuccess returns true when this bind server theme o k response has a 2xx status code

func (*BindServerThemeOK) String

func (o *BindServerThemeOK) String() string

type BindServerThemeParams

type BindServerThemeParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* ThemeID.

	   Theme ID
	*/
	ThemeID string

	/* Wid.

	   Workspace id

	   Default: "default"
	*/
	Wid string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

BindServerThemeParams contains all the parameters to send to the API endpoint

for the bind server theme operation.

Typically these are written to a http.Request.

func NewBindServerThemeParams

func NewBindServerThemeParams() *BindServerThemeParams

NewBindServerThemeParams creates a new BindServerThemeParams 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 NewBindServerThemeParamsWithContext

func NewBindServerThemeParamsWithContext(ctx context.Context) *BindServerThemeParams

NewBindServerThemeParamsWithContext creates a new BindServerThemeParams object with the ability to set a context for a request.

func NewBindServerThemeParamsWithHTTPClient

func NewBindServerThemeParamsWithHTTPClient(client *http.Client) *BindServerThemeParams

NewBindServerThemeParamsWithHTTPClient creates a new BindServerThemeParams object with the ability to set a custom HTTPClient for a request.

func NewBindServerThemeParamsWithTimeout

func NewBindServerThemeParamsWithTimeout(timeout time.Duration) *BindServerThemeParams

NewBindServerThemeParamsWithTimeout creates a new BindServerThemeParams object with the ability to set a timeout on a request.

func (*BindServerThemeParams) SetContext

func (o *BindServerThemeParams) SetContext(ctx context.Context)

SetContext adds the context to the bind server theme params

func (*BindServerThemeParams) SetDefaults

func (o *BindServerThemeParams) SetDefaults()

SetDefaults hydrates default values in the bind server theme params (not the query body).

All values with no default are reset to their zero value.

func (*BindServerThemeParams) SetHTTPClient

func (o *BindServerThemeParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the bind server theme params

func (*BindServerThemeParams) SetIfMatch

func (o *BindServerThemeParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the bind server theme params

func (*BindServerThemeParams) SetThemeID

func (o *BindServerThemeParams) SetThemeID(themeID string)

SetThemeID adds the themeId to the bind server theme params

func (*BindServerThemeParams) SetTimeout

func (o *BindServerThemeParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the bind server theme params

func (*BindServerThemeParams) SetWid

func (o *BindServerThemeParams) SetWid(wid string)

SetWid adds the wid to the bind server theme params

func (*BindServerThemeParams) WithContext

WithContext adds the context to the bind server theme params

func (*BindServerThemeParams) WithDefaults

func (o *BindServerThemeParams) WithDefaults() *BindServerThemeParams

WithDefaults hydrates default values in the bind server theme params (not the query body).

All values with no default are reset to their zero value.

func (*BindServerThemeParams) WithHTTPClient

func (o *BindServerThemeParams) WithHTTPClient(client *http.Client) *BindServerThemeParams

WithHTTPClient adds the HTTPClient to the bind server theme params

func (*BindServerThemeParams) WithIfMatch

func (o *BindServerThemeParams) WithIfMatch(ifMatch *string) *BindServerThemeParams

WithIfMatch adds the ifMatch to the bind server theme params

func (*BindServerThemeParams) WithThemeID

func (o *BindServerThemeParams) WithThemeID(themeID string) *BindServerThemeParams

WithThemeID adds the themeID to the bind server theme params

func (*BindServerThemeParams) WithTimeout

func (o *BindServerThemeParams) WithTimeout(timeout time.Duration) *BindServerThemeParams

WithTimeout adds the timeout to the bind server theme params

func (*BindServerThemeParams) WithWid

WithWid adds the wid to the bind server theme params

func (*BindServerThemeParams) WriteToRequest

func (o *BindServerThemeParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type BindServerThemeReader

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

BindServerThemeReader is a Reader for the BindServerTheme structure.

func (*BindServerThemeReader) ReadResponse

func (o *BindServerThemeReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type BindServerThemeTooManyRequests

type BindServerThemeTooManyRequests struct {
	Payload *models.Error
}

BindServerThemeTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewBindServerThemeTooManyRequests

func NewBindServerThemeTooManyRequests() *BindServerThemeTooManyRequests

NewBindServerThemeTooManyRequests creates a BindServerThemeTooManyRequests with default headers values

func (*BindServerThemeTooManyRequests) Code

Code gets the status code for the bind server theme too many requests response

func (*BindServerThemeTooManyRequests) Error

func (*BindServerThemeTooManyRequests) GetPayload

func (o *BindServerThemeTooManyRequests) GetPayload() *models.Error

func (*BindServerThemeTooManyRequests) IsClientError

func (o *BindServerThemeTooManyRequests) IsClientError() bool

IsClientError returns true when this bind server theme too many requests response has a 4xx status code

func (*BindServerThemeTooManyRequests) IsCode

func (o *BindServerThemeTooManyRequests) IsCode(code int) bool

IsCode returns true when this bind server theme too many requests response a status code equal to that given

func (*BindServerThemeTooManyRequests) IsRedirect

func (o *BindServerThemeTooManyRequests) IsRedirect() bool

IsRedirect returns true when this bind server theme too many requests response has a 3xx status code

func (*BindServerThemeTooManyRequests) IsServerError

func (o *BindServerThemeTooManyRequests) IsServerError() bool

IsServerError returns true when this bind server theme too many requests response has a 5xx status code

func (*BindServerThemeTooManyRequests) IsSuccess

func (o *BindServerThemeTooManyRequests) IsSuccess() bool

IsSuccess returns true when this bind server theme too many requests response has a 2xx status code

func (*BindServerThemeTooManyRequests) String

type BindServerThemeUnauthorized

type BindServerThemeUnauthorized struct {
	Payload *models.Error
}

BindServerThemeUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewBindServerThemeUnauthorized

func NewBindServerThemeUnauthorized() *BindServerThemeUnauthorized

NewBindServerThemeUnauthorized creates a BindServerThemeUnauthorized with default headers values

func (*BindServerThemeUnauthorized) Code

func (o *BindServerThemeUnauthorized) Code() int

Code gets the status code for the bind server theme unauthorized response

func (*BindServerThemeUnauthorized) Error

func (*BindServerThemeUnauthorized) GetPayload

func (o *BindServerThemeUnauthorized) GetPayload() *models.Error

func (*BindServerThemeUnauthorized) IsClientError

func (o *BindServerThemeUnauthorized) IsClientError() bool

IsClientError returns true when this bind server theme unauthorized response has a 4xx status code

func (*BindServerThemeUnauthorized) IsCode

func (o *BindServerThemeUnauthorized) IsCode(code int) bool

IsCode returns true when this bind server theme unauthorized response a status code equal to that given

func (*BindServerThemeUnauthorized) IsRedirect

func (o *BindServerThemeUnauthorized) IsRedirect() bool

IsRedirect returns true when this bind server theme unauthorized response has a 3xx status code

func (*BindServerThemeUnauthorized) IsServerError

func (o *BindServerThemeUnauthorized) IsServerError() bool

IsServerError returns true when this bind server theme unauthorized response has a 5xx status code

func (*BindServerThemeUnauthorized) IsSuccess

func (o *BindServerThemeUnauthorized) IsSuccess() bool

IsSuccess returns true when this bind server theme unauthorized response has a 2xx status code

func (*BindServerThemeUnauthorized) String

func (o *BindServerThemeUnauthorized) String() string

type BindServerTooManyRequests

type BindServerTooManyRequests struct {
	Payload *models.Error
}

BindServerTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewBindServerTooManyRequests

func NewBindServerTooManyRequests() *BindServerTooManyRequests

NewBindServerTooManyRequests creates a BindServerTooManyRequests with default headers values

func (*BindServerTooManyRequests) Code

func (o *BindServerTooManyRequests) Code() int

Code gets the status code for the bind server too many requests response

func (*BindServerTooManyRequests) Error

func (o *BindServerTooManyRequests) Error() string

func (*BindServerTooManyRequests) GetPayload

func (o *BindServerTooManyRequests) GetPayload() *models.Error

func (*BindServerTooManyRequests) IsClientError

func (o *BindServerTooManyRequests) IsClientError() bool

IsClientError returns true when this bind server too many requests response has a 4xx status code

func (*BindServerTooManyRequests) IsCode

func (o *BindServerTooManyRequests) IsCode(code int) bool

IsCode returns true when this bind server too many requests response a status code equal to that given

func (*BindServerTooManyRequests) IsRedirect

func (o *BindServerTooManyRequests) IsRedirect() bool

IsRedirect returns true when this bind server too many requests response has a 3xx status code

func (*BindServerTooManyRequests) IsServerError

func (o *BindServerTooManyRequests) IsServerError() bool

IsServerError returns true when this bind server too many requests response has a 5xx status code

func (*BindServerTooManyRequests) IsSuccess

func (o *BindServerTooManyRequests) IsSuccess() bool

IsSuccess returns true when this bind server too many requests response has a 2xx status code

func (*BindServerTooManyRequests) String

func (o *BindServerTooManyRequests) String() string

type BindServerUnauthorized

type BindServerUnauthorized struct {
	Payload *models.Error
}

BindServerUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewBindServerUnauthorized

func NewBindServerUnauthorized() *BindServerUnauthorized

NewBindServerUnauthorized creates a BindServerUnauthorized with default headers values

func (*BindServerUnauthorized) Code

func (o *BindServerUnauthorized) Code() int

Code gets the status code for the bind server unauthorized response

func (*BindServerUnauthorized) Error

func (o *BindServerUnauthorized) Error() string

func (*BindServerUnauthorized) GetPayload

func (o *BindServerUnauthorized) GetPayload() *models.Error

func (*BindServerUnauthorized) IsClientError

func (o *BindServerUnauthorized) IsClientError() bool

IsClientError returns true when this bind server unauthorized response has a 4xx status code

func (*BindServerUnauthorized) IsCode

func (o *BindServerUnauthorized) IsCode(code int) bool

IsCode returns true when this bind server unauthorized response a status code equal to that given

func (*BindServerUnauthorized) IsRedirect

func (o *BindServerUnauthorized) IsRedirect() bool

IsRedirect returns true when this bind server unauthorized response has a 3xx status code

func (*BindServerUnauthorized) IsServerError

func (o *BindServerUnauthorized) IsServerError() bool

IsServerError returns true when this bind server unauthorized response has a 5xx status code

func (*BindServerUnauthorized) IsSuccess

func (o *BindServerUnauthorized) IsSuccess() bool

IsSuccess returns true when this bind server unauthorized response has a 2xx status code

func (*BindServerUnauthorized) String

func (o *BindServerUnauthorized) String() string

type Client

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

Client for servers API

func (*Client) BindServer

func (a *Client) BindServer(params *BindServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*BindServerOK, error)

BindServer binds server

Bind server.

func (*Client) BindServerTheme

func (a *Client) BindServerTheme(params *BindServerThemeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*BindServerThemeOK, error)

BindServerTheme binds server to theme

Binds the workspace (authentication server) to the custom-branding theme.

func (*Client) CreateAuthorizationServer

func (a *Client) CreateAuthorizationServer(params *CreateAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateAuthorizationServerCreated, error)
CreateAuthorizationServer creates authorization server

Multiple authorization servers with unique id can be created within a tenant.

If id and secret are not provided, will be generated. Secret if provided must have at least 32 characters.

You can set what grant types will be supported by authorization server. The defaults are: `{"grant_types": ["authorization_code", "implicit", "client_credentials", "refresh_token"]}`

If jwks keys are not provided explicitly, will be generated based on provided `key_type` algorithm (rsa by default).

TTLs for tokens and authorization code can be customized. The defaults are:

`authorization_code_ttl` - 10 minutes `access_token_ttl` - 1 hour `id_token_ttl` - 1 hour `refresh_token_ttl` - 30 days

If you want to enable dynamic client registration set `{"enable_dynamic_client_registration": true}`.

If you want to create FAPI read write compliant server set: `{"profiles"": ["fapi_rw"]}`.

If you want to enforce PKCE set `{"enforce_pkce": true}`.

func (*Client) DeleteAuthorizationServer

DeleteAuthorizationServer deletes authorization server

Delete authorization server.

func (*Client) GetAuthorizationServer

func (a *Client) GetAuthorizationServer(params *GetAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthorizationServerOK, error)

GetAuthorizationServer gets authorization server

Get authorization server.

func (*Client) GetCIBAAuthenticationService

func (a *Client) GetCIBAAuthenticationService(params *GetCIBAAuthenticationServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCIBAAuthenticationServiceOK, error)

GetCIBAAuthenticationService gets c i b a authentication service

This API returns details of CIBA authentication service.

func (*Client) GetServerConsent

func (a *Client) GetServerConsent(params *GetServerConsentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServerConsentOK, error)

GetServerConsent gets server consent

Get server consent.

func (*Client) GetServerTheme

func (a *Client) GetServerTheme(params *GetServerThemeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServerThemeOK, error)

GetServerTheme gets server theme

Returns the server-to-theme mapping, if any.

func (*Client) ListAuthorizationServers

func (a *Client) ListAuthorizationServers(params *ListAuthorizationServersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListAuthorizationServersOK, error)

ListAuthorizationServers lists authorization servers

List authorization servers.

func (*Client) ListServersBindings

func (a *Client) ListServersBindings(params *ListServersBindingsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServersBindingsOK, error)

ListServersBindings lists servers bindings

List servers bindings.

func (*Client) SetCIBAAuthenticationService

func (a *Client) SetCIBAAuthenticationService(params *SetCIBAAuthenticationServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetCIBAAuthenticationServiceOK, error)
SetCIBAAuthenticationService sets c i b a authentication service

If you want to enable CIBA for the workspace, you need to provide url to external service that implements

rest api specified by ACP.

func (*Client) SetServerConsent

func (a *Client) SetServerConsent(params *SetServerConsentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetServerConsentOK, error)

SetServerConsent sets server consent

Set server consent. For custom server consent a client in system server is created automatically.

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

func (*Client) UnbindServer

func (a *Client) UnbindServer(params *UnbindServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UnbindServerOK, error)

UnbindServer unbinds server

Unbind server.

func (*Client) UnbindServerTheme

func (a *Client) UnbindServerTheme(params *UnbindServerThemeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UnbindServerThemeOK, error)

UnbindServerTheme unbinds server theme

Deletes the server's current binding to a customer-branding theme.

func (*Client) UpdateAuthorizationServer

func (a *Client) UpdateAuthorizationServer(params *UpdateAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateAuthorizationServerOK, error)

UpdateAuthorizationServer updates authorization server

Update authorization server.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	BindServer(params *BindServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*BindServerOK, error)

	BindServerTheme(params *BindServerThemeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*BindServerThemeOK, error)

	CreateAuthorizationServer(params *CreateAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateAuthorizationServerCreated, error)

	DeleteAuthorizationServer(params *DeleteAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAuthorizationServerNoContent, error)

	GetAuthorizationServer(params *GetAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAuthorizationServerOK, error)

	GetCIBAAuthenticationService(params *GetCIBAAuthenticationServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCIBAAuthenticationServiceOK, error)

	GetServerConsent(params *GetServerConsentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServerConsentOK, error)

	GetServerTheme(params *GetServerThemeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServerThemeOK, error)

	ListAuthorizationServers(params *ListAuthorizationServersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListAuthorizationServersOK, error)

	ListServersBindings(params *ListServersBindingsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServersBindingsOK, error)

	SetCIBAAuthenticationService(params *SetCIBAAuthenticationServiceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetCIBAAuthenticationServiceOK, error)

	SetServerConsent(params *SetServerConsentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetServerConsentOK, error)

	UnbindServer(params *UnbindServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UnbindServerOK, error)

	UnbindServerTheme(params *UnbindServerThemeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UnbindServerThemeOK, error)

	UpdateAuthorizationServer(params *UpdateAuthorizationServerParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateAuthorizationServerOK, 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.

type CreateAuthorizationServerBadRequest

type CreateAuthorizationServerBadRequest struct {
	Payload *models.Error
}

CreateAuthorizationServerBadRequest describes a response with status code 400, with default header values.

Bad request

func NewCreateAuthorizationServerBadRequest

func NewCreateAuthorizationServerBadRequest() *CreateAuthorizationServerBadRequest

NewCreateAuthorizationServerBadRequest creates a CreateAuthorizationServerBadRequest with default headers values

func (*CreateAuthorizationServerBadRequest) Code

Code gets the status code for the create authorization server bad request response

func (*CreateAuthorizationServerBadRequest) Error

func (*CreateAuthorizationServerBadRequest) GetPayload

func (*CreateAuthorizationServerBadRequest) IsClientError

func (o *CreateAuthorizationServerBadRequest) IsClientError() bool

IsClientError returns true when this create authorization server bad request response has a 4xx status code

func (*CreateAuthorizationServerBadRequest) IsCode

IsCode returns true when this create authorization server bad request response a status code equal to that given

func (*CreateAuthorizationServerBadRequest) IsRedirect

func (o *CreateAuthorizationServerBadRequest) IsRedirect() bool

IsRedirect returns true when this create authorization server bad request response has a 3xx status code

func (*CreateAuthorizationServerBadRequest) IsServerError

func (o *CreateAuthorizationServerBadRequest) IsServerError() bool

IsServerError returns true when this create authorization server bad request response has a 5xx status code

func (*CreateAuthorizationServerBadRequest) IsSuccess

IsSuccess returns true when this create authorization server bad request response has a 2xx status code

func (*CreateAuthorizationServerBadRequest) String

type CreateAuthorizationServerConflict

type CreateAuthorizationServerConflict struct {
	Payload *models.Error
}

CreateAuthorizationServerConflict describes a response with status code 409, with default header values.

Conflict

func NewCreateAuthorizationServerConflict

func NewCreateAuthorizationServerConflict() *CreateAuthorizationServerConflict

NewCreateAuthorizationServerConflict creates a CreateAuthorizationServerConflict with default headers values

func (*CreateAuthorizationServerConflict) Code

Code gets the status code for the create authorization server conflict response

func (*CreateAuthorizationServerConflict) Error

func (*CreateAuthorizationServerConflict) GetPayload

func (*CreateAuthorizationServerConflict) IsClientError

func (o *CreateAuthorizationServerConflict) IsClientError() bool

IsClientError returns true when this create authorization server conflict response has a 4xx status code

func (*CreateAuthorizationServerConflict) IsCode

func (o *CreateAuthorizationServerConflict) IsCode(code int) bool

IsCode returns true when this create authorization server conflict response a status code equal to that given

func (*CreateAuthorizationServerConflict) IsRedirect

func (o *CreateAuthorizationServerConflict) IsRedirect() bool

IsRedirect returns true when this create authorization server conflict response has a 3xx status code

func (*CreateAuthorizationServerConflict) IsServerError

func (o *CreateAuthorizationServerConflict) IsServerError() bool

IsServerError returns true when this create authorization server conflict response has a 5xx status code

func (*CreateAuthorizationServerConflict) IsSuccess

func (o *CreateAuthorizationServerConflict) IsSuccess() bool

IsSuccess returns true when this create authorization server conflict response has a 2xx status code

func (*CreateAuthorizationServerConflict) String

type CreateAuthorizationServerCreated

type CreateAuthorizationServerCreated struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerResponse
}

CreateAuthorizationServerCreated describes a response with status code 201, with default header values.

Server

func NewCreateAuthorizationServerCreated

func NewCreateAuthorizationServerCreated() *CreateAuthorizationServerCreated

NewCreateAuthorizationServerCreated creates a CreateAuthorizationServerCreated with default headers values

func (*CreateAuthorizationServerCreated) Code

Code gets the status code for the create authorization server created response

func (*CreateAuthorizationServerCreated) Error

func (*CreateAuthorizationServerCreated) GetPayload

func (*CreateAuthorizationServerCreated) IsClientError

func (o *CreateAuthorizationServerCreated) IsClientError() bool

IsClientError returns true when this create authorization server created response has a 4xx status code

func (*CreateAuthorizationServerCreated) IsCode

func (o *CreateAuthorizationServerCreated) IsCode(code int) bool

IsCode returns true when this create authorization server created response a status code equal to that given

func (*CreateAuthorizationServerCreated) IsRedirect

func (o *CreateAuthorizationServerCreated) IsRedirect() bool

IsRedirect returns true when this create authorization server created response has a 3xx status code

func (*CreateAuthorizationServerCreated) IsServerError

func (o *CreateAuthorizationServerCreated) IsServerError() bool

IsServerError returns true when this create authorization server created response has a 5xx status code

func (*CreateAuthorizationServerCreated) IsSuccess

func (o *CreateAuthorizationServerCreated) IsSuccess() bool

IsSuccess returns true when this create authorization server created response has a 2xx status code

func (*CreateAuthorizationServerCreated) String

type CreateAuthorizationServerForbidden

type CreateAuthorizationServerForbidden struct {
	Payload *models.Error
}

CreateAuthorizationServerForbidden describes a response with status code 403, with default header values.

Forbidden

func NewCreateAuthorizationServerForbidden

func NewCreateAuthorizationServerForbidden() *CreateAuthorizationServerForbidden

NewCreateAuthorizationServerForbidden creates a CreateAuthorizationServerForbidden with default headers values

func (*CreateAuthorizationServerForbidden) Code

Code gets the status code for the create authorization server forbidden response

func (*CreateAuthorizationServerForbidden) Error

func (*CreateAuthorizationServerForbidden) GetPayload

func (*CreateAuthorizationServerForbidden) IsClientError

func (o *CreateAuthorizationServerForbidden) IsClientError() bool

IsClientError returns true when this create authorization server forbidden response has a 4xx status code

func (*CreateAuthorizationServerForbidden) IsCode

IsCode returns true when this create authorization server forbidden response a status code equal to that given

func (*CreateAuthorizationServerForbidden) IsRedirect

func (o *CreateAuthorizationServerForbidden) IsRedirect() bool

IsRedirect returns true when this create authorization server forbidden response has a 3xx status code

func (*CreateAuthorizationServerForbidden) IsServerError

func (o *CreateAuthorizationServerForbidden) IsServerError() bool

IsServerError returns true when this create authorization server forbidden response has a 5xx status code

func (*CreateAuthorizationServerForbidden) IsSuccess

IsSuccess returns true when this create authorization server forbidden response has a 2xx status code

func (*CreateAuthorizationServerForbidden) String

type CreateAuthorizationServerNotFound

type CreateAuthorizationServerNotFound struct {
	Payload *models.Error
}

CreateAuthorizationServerNotFound describes a response with status code 404, with default header values.

Not found

func NewCreateAuthorizationServerNotFound

func NewCreateAuthorizationServerNotFound() *CreateAuthorizationServerNotFound

NewCreateAuthorizationServerNotFound creates a CreateAuthorizationServerNotFound with default headers values

func (*CreateAuthorizationServerNotFound) Code

Code gets the status code for the create authorization server not found response

func (*CreateAuthorizationServerNotFound) Error

func (*CreateAuthorizationServerNotFound) GetPayload

func (*CreateAuthorizationServerNotFound) IsClientError

func (o *CreateAuthorizationServerNotFound) IsClientError() bool

IsClientError returns true when this create authorization server not found response has a 4xx status code

func (*CreateAuthorizationServerNotFound) IsCode

func (o *CreateAuthorizationServerNotFound) IsCode(code int) bool

IsCode returns true when this create authorization server not found response a status code equal to that given

func (*CreateAuthorizationServerNotFound) IsRedirect

func (o *CreateAuthorizationServerNotFound) IsRedirect() bool

IsRedirect returns true when this create authorization server not found response has a 3xx status code

func (*CreateAuthorizationServerNotFound) IsServerError

func (o *CreateAuthorizationServerNotFound) IsServerError() bool

IsServerError returns true when this create authorization server not found response has a 5xx status code

func (*CreateAuthorizationServerNotFound) IsSuccess

func (o *CreateAuthorizationServerNotFound) IsSuccess() bool

IsSuccess returns true when this create authorization server not found response has a 2xx status code

func (*CreateAuthorizationServerNotFound) String

type CreateAuthorizationServerParams

type CreateAuthorizationServerParams struct {

	// Server.
	Server *models.Server

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* WithDemoClient.

	   With demo client
	*/
	WithDemoClient *bool

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

CreateAuthorizationServerParams contains all the parameters to send to the API endpoint

for the create authorization server operation.

Typically these are written to a http.Request.

func NewCreateAuthorizationServerParams

func NewCreateAuthorizationServerParams() *CreateAuthorizationServerParams

NewCreateAuthorizationServerParams creates a new CreateAuthorizationServerParams 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 NewCreateAuthorizationServerParamsWithContext

func NewCreateAuthorizationServerParamsWithContext(ctx context.Context) *CreateAuthorizationServerParams

NewCreateAuthorizationServerParamsWithContext creates a new CreateAuthorizationServerParams object with the ability to set a context for a request.

func NewCreateAuthorizationServerParamsWithHTTPClient

func NewCreateAuthorizationServerParamsWithHTTPClient(client *http.Client) *CreateAuthorizationServerParams

NewCreateAuthorizationServerParamsWithHTTPClient creates a new CreateAuthorizationServerParams object with the ability to set a custom HTTPClient for a request.

func NewCreateAuthorizationServerParamsWithTimeout

func NewCreateAuthorizationServerParamsWithTimeout(timeout time.Duration) *CreateAuthorizationServerParams

NewCreateAuthorizationServerParamsWithTimeout creates a new CreateAuthorizationServerParams object with the ability to set a timeout on a request.

func (*CreateAuthorizationServerParams) SetContext

func (o *CreateAuthorizationServerParams) SetContext(ctx context.Context)

SetContext adds the context to the create authorization server params

func (*CreateAuthorizationServerParams) SetDefaults

func (o *CreateAuthorizationServerParams) SetDefaults()

SetDefaults hydrates default values in the create authorization server params (not the query body).

All values with no default are reset to their zero value.

func (*CreateAuthorizationServerParams) SetHTTPClient

func (o *CreateAuthorizationServerParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the create authorization server params

func (*CreateAuthorizationServerParams) SetIfMatch

func (o *CreateAuthorizationServerParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the create authorization server params

func (*CreateAuthorizationServerParams) SetServer

func (o *CreateAuthorizationServerParams) SetServer(server *models.Server)

SetServer adds the server to the create authorization server params

func (*CreateAuthorizationServerParams) SetTimeout

func (o *CreateAuthorizationServerParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the create authorization server params

func (*CreateAuthorizationServerParams) SetWithDemoClient

func (o *CreateAuthorizationServerParams) SetWithDemoClient(withDemoClient *bool)

SetWithDemoClient adds the withDemoClient to the create authorization server params

func (*CreateAuthorizationServerParams) WithContext

WithContext adds the context to the create authorization server params

func (*CreateAuthorizationServerParams) WithDefaults

WithDefaults hydrates default values in the create authorization server params (not the query body).

All values with no default are reset to their zero value.

func (*CreateAuthorizationServerParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create authorization server params

func (*CreateAuthorizationServerParams) WithIfMatch

WithIfMatch adds the ifMatch to the create authorization server params

func (*CreateAuthorizationServerParams) WithServer

WithServer adds the server to the create authorization server params

func (*CreateAuthorizationServerParams) WithTimeout

WithTimeout adds the timeout to the create authorization server params

func (*CreateAuthorizationServerParams) WithWithDemoClient

func (o *CreateAuthorizationServerParams) WithWithDemoClient(withDemoClient *bool) *CreateAuthorizationServerParams

WithWithDemoClient adds the withDemoClient to the create authorization server params

func (*CreateAuthorizationServerParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateAuthorizationServerReader

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

CreateAuthorizationServerReader is a Reader for the CreateAuthorizationServer structure.

func (*CreateAuthorizationServerReader) ReadResponse

func (o *CreateAuthorizationServerReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type CreateAuthorizationServerTooManyRequests

type CreateAuthorizationServerTooManyRequests struct {
	Payload *models.Error
}

CreateAuthorizationServerTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewCreateAuthorizationServerTooManyRequests

func NewCreateAuthorizationServerTooManyRequests() *CreateAuthorizationServerTooManyRequests

NewCreateAuthorizationServerTooManyRequests creates a CreateAuthorizationServerTooManyRequests with default headers values

func (*CreateAuthorizationServerTooManyRequests) Code

Code gets the status code for the create authorization server too many requests response

func (*CreateAuthorizationServerTooManyRequests) Error

func (*CreateAuthorizationServerTooManyRequests) GetPayload

func (*CreateAuthorizationServerTooManyRequests) IsClientError

IsClientError returns true when this create authorization server too many requests response has a 4xx status code

func (*CreateAuthorizationServerTooManyRequests) IsCode

IsCode returns true when this create authorization server too many requests response a status code equal to that given

func (*CreateAuthorizationServerTooManyRequests) IsRedirect

IsRedirect returns true when this create authorization server too many requests response has a 3xx status code

func (*CreateAuthorizationServerTooManyRequests) IsServerError

IsServerError returns true when this create authorization server too many requests response has a 5xx status code

func (*CreateAuthorizationServerTooManyRequests) IsSuccess

IsSuccess returns true when this create authorization server too many requests response has a 2xx status code

func (*CreateAuthorizationServerTooManyRequests) String

type CreateAuthorizationServerUnauthorized

type CreateAuthorizationServerUnauthorized struct {
	Payload *models.Error
}

CreateAuthorizationServerUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewCreateAuthorizationServerUnauthorized

func NewCreateAuthorizationServerUnauthorized() *CreateAuthorizationServerUnauthorized

NewCreateAuthorizationServerUnauthorized creates a CreateAuthorizationServerUnauthorized with default headers values

func (*CreateAuthorizationServerUnauthorized) Code

Code gets the status code for the create authorization server unauthorized response

func (*CreateAuthorizationServerUnauthorized) Error

func (*CreateAuthorizationServerUnauthorized) GetPayload

func (*CreateAuthorizationServerUnauthorized) IsClientError

func (o *CreateAuthorizationServerUnauthorized) IsClientError() bool

IsClientError returns true when this create authorization server unauthorized response has a 4xx status code

func (*CreateAuthorizationServerUnauthorized) IsCode

IsCode returns true when this create authorization server unauthorized response a status code equal to that given

func (*CreateAuthorizationServerUnauthorized) IsRedirect

IsRedirect returns true when this create authorization server unauthorized response has a 3xx status code

func (*CreateAuthorizationServerUnauthorized) IsServerError

func (o *CreateAuthorizationServerUnauthorized) IsServerError() bool

IsServerError returns true when this create authorization server unauthorized response has a 5xx status code

func (*CreateAuthorizationServerUnauthorized) IsSuccess

IsSuccess returns true when this create authorization server unauthorized response has a 2xx status code

func (*CreateAuthorizationServerUnauthorized) String

type CreateAuthorizationServerUnprocessableEntity

type CreateAuthorizationServerUnprocessableEntity struct {
	Payload *models.Error
}

CreateAuthorizationServerUnprocessableEntity describes a response with status code 422, with default header values.

Unprocessable entity

func NewCreateAuthorizationServerUnprocessableEntity

func NewCreateAuthorizationServerUnprocessableEntity() *CreateAuthorizationServerUnprocessableEntity

NewCreateAuthorizationServerUnprocessableEntity creates a CreateAuthorizationServerUnprocessableEntity with default headers values

func (*CreateAuthorizationServerUnprocessableEntity) Code

Code gets the status code for the create authorization server unprocessable entity response

func (*CreateAuthorizationServerUnprocessableEntity) Error

func (*CreateAuthorizationServerUnprocessableEntity) GetPayload

func (*CreateAuthorizationServerUnprocessableEntity) IsClientError

IsClientError returns true when this create authorization server unprocessable entity response has a 4xx status code

func (*CreateAuthorizationServerUnprocessableEntity) IsCode

IsCode returns true when this create authorization server unprocessable entity response a status code equal to that given

func (*CreateAuthorizationServerUnprocessableEntity) IsRedirect

IsRedirect returns true when this create authorization server unprocessable entity response has a 3xx status code

func (*CreateAuthorizationServerUnprocessableEntity) IsServerError

IsServerError returns true when this create authorization server unprocessable entity response has a 5xx status code

func (*CreateAuthorizationServerUnprocessableEntity) IsSuccess

IsSuccess returns true when this create authorization server unprocessable entity response has a 2xx status code

func (*CreateAuthorizationServerUnprocessableEntity) String

type DeleteAuthorizationServerBadRequest

type DeleteAuthorizationServerBadRequest struct {
	Payload *models.Error
}

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

Code gets the status code for the delete authorization server bad request response

func (*DeleteAuthorizationServerBadRequest) Error

func (*DeleteAuthorizationServerBadRequest) GetPayload

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

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

IsSuccess returns true when this delete authorization server bad request response has a 2xx status code

func (*DeleteAuthorizationServerBadRequest) String

type DeleteAuthorizationServerForbidden

type DeleteAuthorizationServerForbidden struct {
	Payload *models.Error
}

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

Code gets the status code for the delete authorization server forbidden response

func (*DeleteAuthorizationServerForbidden) Error

func (*DeleteAuthorizationServerForbidden) GetPayload

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

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

IsSuccess returns true when this delete authorization server forbidden response has a 2xx status code

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

Code gets the status code for the delete authorization server no content response

func (*DeleteAuthorizationServerNoContent) Error

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

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

IsSuccess returns true when this delete authorization server no content response has a 2xx status code

func (*DeleteAuthorizationServerNoContent) String

type DeleteAuthorizationServerNotFound

type DeleteAuthorizationServerNotFound struct {
	Payload *models.Error
}

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

Code gets the status code for the delete authorization server not found response

func (*DeleteAuthorizationServerNotFound) Error

func (*DeleteAuthorizationServerNotFound) GetPayload

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

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

WithContext adds the context to the delete authorization server params

func (*DeleteAuthorizationServerParams) WithDefaults

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

WithHTTPClient adds the HTTPClient to the delete authorization server params

func (*DeleteAuthorizationServerParams) WithIfMatch

WithIfMatch adds the ifMatch to the delete authorization server params

func (*DeleteAuthorizationServerParams) WithTimeout

WithTimeout adds the timeout to the delete authorization server params

func (*DeleteAuthorizationServerParams) WithWid

WithWid adds the wid to the delete authorization server params

func (*DeleteAuthorizationServerParams) WriteToRequest

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

type DeleteAuthorizationServerTooManyRequests struct {
	Payload *models.Error
}

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

Code gets the status code for the delete authorization server too many requests response

func (*DeleteAuthorizationServerTooManyRequests) Error

func (*DeleteAuthorizationServerTooManyRequests) GetPayload

func (*DeleteAuthorizationServerTooManyRequests) IsClientError

IsClientError returns true when this delete authorization server too many requests response has a 4xx status code

func (*DeleteAuthorizationServerTooManyRequests) IsCode

IsCode returns true when this delete authorization server too many requests response a status code equal to that given

func (*DeleteAuthorizationServerTooManyRequests) IsRedirect

IsRedirect returns true when this delete authorization server too many requests response has a 3xx status code

func (*DeleteAuthorizationServerTooManyRequests) IsServerError

IsServerError returns true when this delete authorization server too many requests response has a 5xx status code

func (*DeleteAuthorizationServerTooManyRequests) IsSuccess

IsSuccess returns true when this delete authorization server too many requests response has a 2xx status code

func (*DeleteAuthorizationServerTooManyRequests) String

type DeleteAuthorizationServerUnauthorized

type DeleteAuthorizationServerUnauthorized struct {
	Payload *models.Error
}

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

Code gets the status code for the delete authorization server unauthorized response

func (*DeleteAuthorizationServerUnauthorized) Error

func (*DeleteAuthorizationServerUnauthorized) GetPayload

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

IsCode returns true when this delete authorization server unauthorized response a status code equal to that given

func (*DeleteAuthorizationServerUnauthorized) IsRedirect

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

IsSuccess returns true when this delete authorization server unauthorized response has a 2xx status code

func (*DeleteAuthorizationServerUnauthorized) String

type GetAuthorizationServerForbidden

type GetAuthorizationServerForbidden struct {
	Payload *models.Error
}

GetAuthorizationServerForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetAuthorizationServerForbidden

func NewGetAuthorizationServerForbidden() *GetAuthorizationServerForbidden

NewGetAuthorizationServerForbidden creates a GetAuthorizationServerForbidden with default headers values

func (*GetAuthorizationServerForbidden) Code

Code gets the status code for the get authorization server forbidden response

func (*GetAuthorizationServerForbidden) Error

func (*GetAuthorizationServerForbidden) GetPayload

func (o *GetAuthorizationServerForbidden) GetPayload() *models.Error

func (*GetAuthorizationServerForbidden) IsClientError

func (o *GetAuthorizationServerForbidden) IsClientError() bool

IsClientError returns true when this get authorization server forbidden response has a 4xx status code

func (*GetAuthorizationServerForbidden) IsCode

func (o *GetAuthorizationServerForbidden) IsCode(code int) bool

IsCode returns true when this get authorization server forbidden response a status code equal to that given

func (*GetAuthorizationServerForbidden) IsRedirect

func (o *GetAuthorizationServerForbidden) IsRedirect() bool

IsRedirect returns true when this get authorization server forbidden response has a 3xx status code

func (*GetAuthorizationServerForbidden) IsServerError

func (o *GetAuthorizationServerForbidden) IsServerError() bool

IsServerError returns true when this get authorization server forbidden response has a 5xx status code

func (*GetAuthorizationServerForbidden) IsSuccess

func (o *GetAuthorizationServerForbidden) IsSuccess() bool

IsSuccess returns true when this get authorization server forbidden response has a 2xx status code

func (*GetAuthorizationServerForbidden) String

type GetAuthorizationServerNotFound

type GetAuthorizationServerNotFound struct {
	Payload *models.Error
}

GetAuthorizationServerNotFound describes a response with status code 404, with default header values.

Not found

func NewGetAuthorizationServerNotFound

func NewGetAuthorizationServerNotFound() *GetAuthorizationServerNotFound

NewGetAuthorizationServerNotFound creates a GetAuthorizationServerNotFound with default headers values

func (*GetAuthorizationServerNotFound) Code

Code gets the status code for the get authorization server not found response

func (*GetAuthorizationServerNotFound) Error

func (*GetAuthorizationServerNotFound) GetPayload

func (o *GetAuthorizationServerNotFound) GetPayload() *models.Error

func (*GetAuthorizationServerNotFound) IsClientError

func (o *GetAuthorizationServerNotFound) IsClientError() bool

IsClientError returns true when this get authorization server not found response has a 4xx status code

func (*GetAuthorizationServerNotFound) IsCode

func (o *GetAuthorizationServerNotFound) IsCode(code int) bool

IsCode returns true when this get authorization server not found response a status code equal to that given

func (*GetAuthorizationServerNotFound) IsRedirect

func (o *GetAuthorizationServerNotFound) IsRedirect() bool

IsRedirect returns true when this get authorization server not found response has a 3xx status code

func (*GetAuthorizationServerNotFound) IsServerError

func (o *GetAuthorizationServerNotFound) IsServerError() bool

IsServerError returns true when this get authorization server not found response has a 5xx status code

func (*GetAuthorizationServerNotFound) IsSuccess

func (o *GetAuthorizationServerNotFound) IsSuccess() bool

IsSuccess returns true when this get authorization server not found response has a 2xx status code

func (*GetAuthorizationServerNotFound) String

type GetAuthorizationServerOK

type GetAuthorizationServerOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerResponse
}

GetAuthorizationServerOK describes a response with status code 200, with default header values.

Server

func NewGetAuthorizationServerOK

func NewGetAuthorizationServerOK() *GetAuthorizationServerOK

NewGetAuthorizationServerOK creates a GetAuthorizationServerOK with default headers values

func (*GetAuthorizationServerOK) Code

func (o *GetAuthorizationServerOK) Code() int

Code gets the status code for the get authorization server o k response

func (*GetAuthorizationServerOK) Error

func (o *GetAuthorizationServerOK) Error() string

func (*GetAuthorizationServerOK) GetPayload

func (*GetAuthorizationServerOK) IsClientError

func (o *GetAuthorizationServerOK) IsClientError() bool

IsClientError returns true when this get authorization server o k response has a 4xx status code

func (*GetAuthorizationServerOK) IsCode

func (o *GetAuthorizationServerOK) IsCode(code int) bool

IsCode returns true when this get authorization server o k response a status code equal to that given

func (*GetAuthorizationServerOK) IsRedirect

func (o *GetAuthorizationServerOK) IsRedirect() bool

IsRedirect returns true when this get authorization server o k response has a 3xx status code

func (*GetAuthorizationServerOK) IsServerError

func (o *GetAuthorizationServerOK) IsServerError() bool

IsServerError returns true when this get authorization server o k response has a 5xx status code

func (*GetAuthorizationServerOK) IsSuccess

func (o *GetAuthorizationServerOK) IsSuccess() bool

IsSuccess returns true when this get authorization server o k response has a 2xx status code

func (*GetAuthorizationServerOK) String

func (o *GetAuthorizationServerOK) String() string

type GetAuthorizationServerParams

type GetAuthorizationServerParams 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
}

GetAuthorizationServerParams contains all the parameters to send to the API endpoint

for the get authorization server operation.

Typically these are written to a http.Request.

func NewGetAuthorizationServerParams

func NewGetAuthorizationServerParams() *GetAuthorizationServerParams

NewGetAuthorizationServerParams creates a new GetAuthorizationServerParams 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 NewGetAuthorizationServerParamsWithContext

func NewGetAuthorizationServerParamsWithContext(ctx context.Context) *GetAuthorizationServerParams

NewGetAuthorizationServerParamsWithContext creates a new GetAuthorizationServerParams object with the ability to set a context for a request.

func NewGetAuthorizationServerParamsWithHTTPClient

func NewGetAuthorizationServerParamsWithHTTPClient(client *http.Client) *GetAuthorizationServerParams

NewGetAuthorizationServerParamsWithHTTPClient creates a new GetAuthorizationServerParams object with the ability to set a custom HTTPClient for a request.

func NewGetAuthorizationServerParamsWithTimeout

func NewGetAuthorizationServerParamsWithTimeout(timeout time.Duration) *GetAuthorizationServerParams

NewGetAuthorizationServerParamsWithTimeout creates a new GetAuthorizationServerParams object with the ability to set a timeout on a request.

func (*GetAuthorizationServerParams) SetContext

func (o *GetAuthorizationServerParams) SetContext(ctx context.Context)

SetContext adds the context to the get authorization server params

func (*GetAuthorizationServerParams) SetDefaults

func (o *GetAuthorizationServerParams) SetDefaults()

SetDefaults hydrates default values in the get authorization server params (not the query body).

All values with no default are reset to their zero value.

func (*GetAuthorizationServerParams) SetHTTPClient

func (o *GetAuthorizationServerParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get authorization server params

func (*GetAuthorizationServerParams) SetIfMatch

func (o *GetAuthorizationServerParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the get authorization server params

func (*GetAuthorizationServerParams) SetTimeout

func (o *GetAuthorizationServerParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get authorization server params

func (*GetAuthorizationServerParams) SetWid

func (o *GetAuthorizationServerParams) SetWid(wid string)

SetWid adds the wid to the get authorization server params

func (*GetAuthorizationServerParams) WithContext

WithContext adds the context to the get authorization server params

func (*GetAuthorizationServerParams) WithDefaults

WithDefaults hydrates default values in the get authorization server params (not the query body).

All values with no default are reset to their zero value.

func (*GetAuthorizationServerParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get authorization server params

func (*GetAuthorizationServerParams) WithIfMatch

WithIfMatch adds the ifMatch to the get authorization server params

func (*GetAuthorizationServerParams) WithTimeout

WithTimeout adds the timeout to the get authorization server params

func (*GetAuthorizationServerParams) WithWid

WithWid adds the wid to the get authorization server params

func (*GetAuthorizationServerParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAuthorizationServerReader

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

GetAuthorizationServerReader is a Reader for the GetAuthorizationServer structure.

func (*GetAuthorizationServerReader) ReadResponse

func (o *GetAuthorizationServerReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetAuthorizationServerTooManyRequests

type GetAuthorizationServerTooManyRequests struct {
	Payload *models.Error
}

GetAuthorizationServerTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewGetAuthorizationServerTooManyRequests

func NewGetAuthorizationServerTooManyRequests() *GetAuthorizationServerTooManyRequests

NewGetAuthorizationServerTooManyRequests creates a GetAuthorizationServerTooManyRequests with default headers values

func (*GetAuthorizationServerTooManyRequests) Code

Code gets the status code for the get authorization server too many requests response

func (*GetAuthorizationServerTooManyRequests) Error

func (*GetAuthorizationServerTooManyRequests) GetPayload

func (*GetAuthorizationServerTooManyRequests) IsClientError

func (o *GetAuthorizationServerTooManyRequests) IsClientError() bool

IsClientError returns true when this get authorization server too many requests response has a 4xx status code

func (*GetAuthorizationServerTooManyRequests) IsCode

IsCode returns true when this get authorization server too many requests response a status code equal to that given

func (*GetAuthorizationServerTooManyRequests) IsRedirect

IsRedirect returns true when this get authorization server too many requests response has a 3xx status code

func (*GetAuthorizationServerTooManyRequests) IsServerError

func (o *GetAuthorizationServerTooManyRequests) IsServerError() bool

IsServerError returns true when this get authorization server too many requests response has a 5xx status code

func (*GetAuthorizationServerTooManyRequests) IsSuccess

IsSuccess returns true when this get authorization server too many requests response has a 2xx status code

func (*GetAuthorizationServerTooManyRequests) String

type GetAuthorizationServerUnauthorized

type GetAuthorizationServerUnauthorized struct {
	Payload *models.Error
}

GetAuthorizationServerUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetAuthorizationServerUnauthorized

func NewGetAuthorizationServerUnauthorized() *GetAuthorizationServerUnauthorized

NewGetAuthorizationServerUnauthorized creates a GetAuthorizationServerUnauthorized with default headers values

func (*GetAuthorizationServerUnauthorized) Code

Code gets the status code for the get authorization server unauthorized response

func (*GetAuthorizationServerUnauthorized) Error

func (*GetAuthorizationServerUnauthorized) GetPayload

func (*GetAuthorizationServerUnauthorized) IsClientError

func (o *GetAuthorizationServerUnauthorized) IsClientError() bool

IsClientError returns true when this get authorization server unauthorized response has a 4xx status code

func (*GetAuthorizationServerUnauthorized) IsCode

IsCode returns true when this get authorization server unauthorized response a status code equal to that given

func (*GetAuthorizationServerUnauthorized) IsRedirect

func (o *GetAuthorizationServerUnauthorized) IsRedirect() bool

IsRedirect returns true when this get authorization server unauthorized response has a 3xx status code

func (*GetAuthorizationServerUnauthorized) IsServerError

func (o *GetAuthorizationServerUnauthorized) IsServerError() bool

IsServerError returns true when this get authorization server unauthorized response has a 5xx status code

func (*GetAuthorizationServerUnauthorized) IsSuccess

IsSuccess returns true when this get authorization server unauthorized response has a 2xx status code

func (*GetAuthorizationServerUnauthorized) String

type GetCIBAAuthenticationServiceForbidden

type GetCIBAAuthenticationServiceForbidden struct {
	Payload *models.Error
}

GetCIBAAuthenticationServiceForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetCIBAAuthenticationServiceForbidden

func NewGetCIBAAuthenticationServiceForbidden() *GetCIBAAuthenticationServiceForbidden

NewGetCIBAAuthenticationServiceForbidden creates a GetCIBAAuthenticationServiceForbidden with default headers values

func (*GetCIBAAuthenticationServiceForbidden) Code

Code gets the status code for the get c i b a authentication service forbidden response

func (*GetCIBAAuthenticationServiceForbidden) Error

func (*GetCIBAAuthenticationServiceForbidden) GetPayload

func (*GetCIBAAuthenticationServiceForbidden) IsClientError

func (o *GetCIBAAuthenticationServiceForbidden) IsClientError() bool

IsClientError returns true when this get c i b a authentication service forbidden response has a 4xx status code

func (*GetCIBAAuthenticationServiceForbidden) IsCode

IsCode returns true when this get c i b a authentication service forbidden response a status code equal to that given

func (*GetCIBAAuthenticationServiceForbidden) IsRedirect

IsRedirect returns true when this get c i b a authentication service forbidden response has a 3xx status code

func (*GetCIBAAuthenticationServiceForbidden) IsServerError

func (o *GetCIBAAuthenticationServiceForbidden) IsServerError() bool

IsServerError returns true when this get c i b a authentication service forbidden response has a 5xx status code

func (*GetCIBAAuthenticationServiceForbidden) IsSuccess

IsSuccess returns true when this get c i b a authentication service forbidden response has a 2xx status code

func (*GetCIBAAuthenticationServiceForbidden) String

type GetCIBAAuthenticationServiceNotFound

type GetCIBAAuthenticationServiceNotFound struct {
	Payload *models.Error
}

GetCIBAAuthenticationServiceNotFound describes a response with status code 404, with default header values.

Not found

func NewGetCIBAAuthenticationServiceNotFound

func NewGetCIBAAuthenticationServiceNotFound() *GetCIBAAuthenticationServiceNotFound

NewGetCIBAAuthenticationServiceNotFound creates a GetCIBAAuthenticationServiceNotFound with default headers values

func (*GetCIBAAuthenticationServiceNotFound) Code

Code gets the status code for the get c i b a authentication service not found response

func (*GetCIBAAuthenticationServiceNotFound) Error

func (*GetCIBAAuthenticationServiceNotFound) GetPayload

func (*GetCIBAAuthenticationServiceNotFound) IsClientError

func (o *GetCIBAAuthenticationServiceNotFound) IsClientError() bool

IsClientError returns true when this get c i b a authentication service not found response has a 4xx status code

func (*GetCIBAAuthenticationServiceNotFound) IsCode

IsCode returns true when this get c i b a authentication service not found response a status code equal to that given

func (*GetCIBAAuthenticationServiceNotFound) IsRedirect

IsRedirect returns true when this get c i b a authentication service not found response has a 3xx status code

func (*GetCIBAAuthenticationServiceNotFound) IsServerError

func (o *GetCIBAAuthenticationServiceNotFound) IsServerError() bool

IsServerError returns true when this get c i b a authentication service not found response has a 5xx status code

func (*GetCIBAAuthenticationServiceNotFound) IsSuccess

IsSuccess returns true when this get c i b a authentication service not found response has a 2xx status code

func (*GetCIBAAuthenticationServiceNotFound) String

type GetCIBAAuthenticationServiceOK

type GetCIBAAuthenticationServiceOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.CIBAAuthenticationService
}

GetCIBAAuthenticationServiceOK describes a response with status code 200, with default header values.

CIBA authentication service

func NewGetCIBAAuthenticationServiceOK

func NewGetCIBAAuthenticationServiceOK() *GetCIBAAuthenticationServiceOK

NewGetCIBAAuthenticationServiceOK creates a GetCIBAAuthenticationServiceOK with default headers values

func (*GetCIBAAuthenticationServiceOK) Code

Code gets the status code for the get c i b a authentication service o k response

func (*GetCIBAAuthenticationServiceOK) Error

func (*GetCIBAAuthenticationServiceOK) GetPayload

func (*GetCIBAAuthenticationServiceOK) IsClientError

func (o *GetCIBAAuthenticationServiceOK) IsClientError() bool

IsClientError returns true when this get c i b a authentication service o k response has a 4xx status code

func (*GetCIBAAuthenticationServiceOK) IsCode

func (o *GetCIBAAuthenticationServiceOK) IsCode(code int) bool

IsCode returns true when this get c i b a authentication service o k response a status code equal to that given

func (*GetCIBAAuthenticationServiceOK) IsRedirect

func (o *GetCIBAAuthenticationServiceOK) IsRedirect() bool

IsRedirect returns true when this get c i b a authentication service o k response has a 3xx status code

func (*GetCIBAAuthenticationServiceOK) IsServerError

func (o *GetCIBAAuthenticationServiceOK) IsServerError() bool

IsServerError returns true when this get c i b a authentication service o k response has a 5xx status code

func (*GetCIBAAuthenticationServiceOK) IsSuccess

func (o *GetCIBAAuthenticationServiceOK) IsSuccess() bool

IsSuccess returns true when this get c i b a authentication service o k response has a 2xx status code

func (*GetCIBAAuthenticationServiceOK) String

type GetCIBAAuthenticationServiceParams

type GetCIBAAuthenticationServiceParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id

	   Default: "default"
	*/
	Wid string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetCIBAAuthenticationServiceParams contains all the parameters to send to the API endpoint

for the get c i b a authentication service operation.

Typically these are written to a http.Request.

func NewGetCIBAAuthenticationServiceParams

func NewGetCIBAAuthenticationServiceParams() *GetCIBAAuthenticationServiceParams

NewGetCIBAAuthenticationServiceParams creates a new GetCIBAAuthenticationServiceParams 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 NewGetCIBAAuthenticationServiceParamsWithContext

func NewGetCIBAAuthenticationServiceParamsWithContext(ctx context.Context) *GetCIBAAuthenticationServiceParams

NewGetCIBAAuthenticationServiceParamsWithContext creates a new GetCIBAAuthenticationServiceParams object with the ability to set a context for a request.

func NewGetCIBAAuthenticationServiceParamsWithHTTPClient

func NewGetCIBAAuthenticationServiceParamsWithHTTPClient(client *http.Client) *GetCIBAAuthenticationServiceParams

NewGetCIBAAuthenticationServiceParamsWithHTTPClient creates a new GetCIBAAuthenticationServiceParams object with the ability to set a custom HTTPClient for a request.

func NewGetCIBAAuthenticationServiceParamsWithTimeout

func NewGetCIBAAuthenticationServiceParamsWithTimeout(timeout time.Duration) *GetCIBAAuthenticationServiceParams

NewGetCIBAAuthenticationServiceParamsWithTimeout creates a new GetCIBAAuthenticationServiceParams object with the ability to set a timeout on a request.

func (*GetCIBAAuthenticationServiceParams) SetContext

SetContext adds the context to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) SetDefaults

func (o *GetCIBAAuthenticationServiceParams) SetDefaults()

SetDefaults hydrates default values in the get c i b a authentication service params (not the query body).

All values with no default are reset to their zero value.

func (*GetCIBAAuthenticationServiceParams) SetHTTPClient

func (o *GetCIBAAuthenticationServiceParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) SetIfMatch

func (o *GetCIBAAuthenticationServiceParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) SetTimeout

func (o *GetCIBAAuthenticationServiceParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) SetWid

SetWid adds the wid to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) WithContext

WithContext adds the context to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) WithDefaults

WithDefaults hydrates default values in the get c i b a authentication service params (not the query body).

All values with no default are reset to their zero value.

func (*GetCIBAAuthenticationServiceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) WithIfMatch

WithIfMatch adds the ifMatch to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) WithTimeout

WithTimeout adds the timeout to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) WithWid

WithWid adds the wid to the get c i b a authentication service params

func (*GetCIBAAuthenticationServiceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCIBAAuthenticationServiceReader

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

GetCIBAAuthenticationServiceReader is a Reader for the GetCIBAAuthenticationService structure.

func (*GetCIBAAuthenticationServiceReader) ReadResponse

func (o *GetCIBAAuthenticationServiceReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetCIBAAuthenticationServiceTooManyRequests

type GetCIBAAuthenticationServiceTooManyRequests struct {
	Payload *models.Error
}

GetCIBAAuthenticationServiceTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewGetCIBAAuthenticationServiceTooManyRequests

func NewGetCIBAAuthenticationServiceTooManyRequests() *GetCIBAAuthenticationServiceTooManyRequests

NewGetCIBAAuthenticationServiceTooManyRequests creates a GetCIBAAuthenticationServiceTooManyRequests with default headers values

func (*GetCIBAAuthenticationServiceTooManyRequests) Code

Code gets the status code for the get c i b a authentication service too many requests response

func (*GetCIBAAuthenticationServiceTooManyRequests) Error

func (*GetCIBAAuthenticationServiceTooManyRequests) GetPayload

func (*GetCIBAAuthenticationServiceTooManyRequests) IsClientError

IsClientError returns true when this get c i b a authentication service too many requests response has a 4xx status code

func (*GetCIBAAuthenticationServiceTooManyRequests) IsCode

IsCode returns true when this get c i b a authentication service too many requests response a status code equal to that given

func (*GetCIBAAuthenticationServiceTooManyRequests) IsRedirect

IsRedirect returns true when this get c i b a authentication service too many requests response has a 3xx status code

func (*GetCIBAAuthenticationServiceTooManyRequests) IsServerError

IsServerError returns true when this get c i b a authentication service too many requests response has a 5xx status code

func (*GetCIBAAuthenticationServiceTooManyRequests) IsSuccess

IsSuccess returns true when this get c i b a authentication service too many requests response has a 2xx status code

func (*GetCIBAAuthenticationServiceTooManyRequests) String

type GetCIBAAuthenticationServiceUnauthorized

type GetCIBAAuthenticationServiceUnauthorized struct {
	Payload *models.Error
}

GetCIBAAuthenticationServiceUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetCIBAAuthenticationServiceUnauthorized

func NewGetCIBAAuthenticationServiceUnauthorized() *GetCIBAAuthenticationServiceUnauthorized

NewGetCIBAAuthenticationServiceUnauthorized creates a GetCIBAAuthenticationServiceUnauthorized with default headers values

func (*GetCIBAAuthenticationServiceUnauthorized) Code

Code gets the status code for the get c i b a authentication service unauthorized response

func (*GetCIBAAuthenticationServiceUnauthorized) Error

func (*GetCIBAAuthenticationServiceUnauthorized) GetPayload

func (*GetCIBAAuthenticationServiceUnauthorized) IsClientError

IsClientError returns true when this get c i b a authentication service unauthorized response has a 4xx status code

func (*GetCIBAAuthenticationServiceUnauthorized) IsCode

IsCode returns true when this get c i b a authentication service unauthorized response a status code equal to that given

func (*GetCIBAAuthenticationServiceUnauthorized) IsRedirect

IsRedirect returns true when this get c i b a authentication service unauthorized response has a 3xx status code

func (*GetCIBAAuthenticationServiceUnauthorized) IsServerError

IsServerError returns true when this get c i b a authentication service unauthorized response has a 5xx status code

func (*GetCIBAAuthenticationServiceUnauthorized) IsSuccess

IsSuccess returns true when this get c i b a authentication service unauthorized response has a 2xx status code

func (*GetCIBAAuthenticationServiceUnauthorized) String

type GetServerConsentForbidden

type GetServerConsentForbidden struct {
	Payload *models.Error
}

GetServerConsentForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetServerConsentForbidden

func NewGetServerConsentForbidden() *GetServerConsentForbidden

NewGetServerConsentForbidden creates a GetServerConsentForbidden with default headers values

func (*GetServerConsentForbidden) Code

func (o *GetServerConsentForbidden) Code() int

Code gets the status code for the get server consent forbidden response

func (*GetServerConsentForbidden) Error

func (o *GetServerConsentForbidden) Error() string

func (*GetServerConsentForbidden) GetPayload

func (o *GetServerConsentForbidden) GetPayload() *models.Error

func (*GetServerConsentForbidden) IsClientError

func (o *GetServerConsentForbidden) IsClientError() bool

IsClientError returns true when this get server consent forbidden response has a 4xx status code

func (*GetServerConsentForbidden) IsCode

func (o *GetServerConsentForbidden) IsCode(code int) bool

IsCode returns true when this get server consent forbidden response a status code equal to that given

func (*GetServerConsentForbidden) IsRedirect

func (o *GetServerConsentForbidden) IsRedirect() bool

IsRedirect returns true when this get server consent forbidden response has a 3xx status code

func (*GetServerConsentForbidden) IsServerError

func (o *GetServerConsentForbidden) IsServerError() bool

IsServerError returns true when this get server consent forbidden response has a 5xx status code

func (*GetServerConsentForbidden) IsSuccess

func (o *GetServerConsentForbidden) IsSuccess() bool

IsSuccess returns true when this get server consent forbidden response has a 2xx status code

func (*GetServerConsentForbidden) String

func (o *GetServerConsentForbidden) String() string

type GetServerConsentNotFound

type GetServerConsentNotFound struct {
	Payload *models.Error
}

GetServerConsentNotFound describes a response with status code 404, with default header values.

Not found

func NewGetServerConsentNotFound

func NewGetServerConsentNotFound() *GetServerConsentNotFound

NewGetServerConsentNotFound creates a GetServerConsentNotFound with default headers values

func (*GetServerConsentNotFound) Code

func (o *GetServerConsentNotFound) Code() int

Code gets the status code for the get server consent not found response

func (*GetServerConsentNotFound) Error

func (o *GetServerConsentNotFound) Error() string

func (*GetServerConsentNotFound) GetPayload

func (o *GetServerConsentNotFound) GetPayload() *models.Error

func (*GetServerConsentNotFound) IsClientError

func (o *GetServerConsentNotFound) IsClientError() bool

IsClientError returns true when this get server consent not found response has a 4xx status code

func (*GetServerConsentNotFound) IsCode

func (o *GetServerConsentNotFound) IsCode(code int) bool

IsCode returns true when this get server consent not found response a status code equal to that given

func (*GetServerConsentNotFound) IsRedirect

func (o *GetServerConsentNotFound) IsRedirect() bool

IsRedirect returns true when this get server consent not found response has a 3xx status code

func (*GetServerConsentNotFound) IsServerError

func (o *GetServerConsentNotFound) IsServerError() bool

IsServerError returns true when this get server consent not found response has a 5xx status code

func (*GetServerConsentNotFound) IsSuccess

func (o *GetServerConsentNotFound) IsSuccess() bool

IsSuccess returns true when this get server consent not found response has a 2xx status code

func (*GetServerConsentNotFound) String

func (o *GetServerConsentNotFound) String() string

type GetServerConsentOK

type GetServerConsentOK struct {
	Payload *models.ServerConsentResponse
}

GetServerConsentOK describes a response with status code 200, with default header values.

Server consent

func NewGetServerConsentOK

func NewGetServerConsentOK() *GetServerConsentOK

NewGetServerConsentOK creates a GetServerConsentOK with default headers values

func (*GetServerConsentOK) Code

func (o *GetServerConsentOK) Code() int

Code gets the status code for the get server consent o k response

func (*GetServerConsentOK) Error

func (o *GetServerConsentOK) Error() string

func (*GetServerConsentOK) GetPayload

func (*GetServerConsentOK) IsClientError

func (o *GetServerConsentOK) IsClientError() bool

IsClientError returns true when this get server consent o k response has a 4xx status code

func (*GetServerConsentOK) IsCode

func (o *GetServerConsentOK) IsCode(code int) bool

IsCode returns true when this get server consent o k response a status code equal to that given

func (*GetServerConsentOK) IsRedirect

func (o *GetServerConsentOK) IsRedirect() bool

IsRedirect returns true when this get server consent o k response has a 3xx status code

func (*GetServerConsentOK) IsServerError

func (o *GetServerConsentOK) IsServerError() bool

IsServerError returns true when this get server consent o k response has a 5xx status code

func (*GetServerConsentOK) IsSuccess

func (o *GetServerConsentOK) IsSuccess() bool

IsSuccess returns true when this get server consent o k response has a 2xx status code

func (*GetServerConsentOK) String

func (o *GetServerConsentOK) String() string

type GetServerConsentParams

type GetServerConsentParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id

	   Default: "default"
	*/
	Wid string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetServerConsentParams contains all the parameters to send to the API endpoint

for the get server consent operation.

Typically these are written to a http.Request.

func NewGetServerConsentParams

func NewGetServerConsentParams() *GetServerConsentParams

NewGetServerConsentParams creates a new GetServerConsentParams 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 NewGetServerConsentParamsWithContext

func NewGetServerConsentParamsWithContext(ctx context.Context) *GetServerConsentParams

NewGetServerConsentParamsWithContext creates a new GetServerConsentParams object with the ability to set a context for a request.

func NewGetServerConsentParamsWithHTTPClient

func NewGetServerConsentParamsWithHTTPClient(client *http.Client) *GetServerConsentParams

NewGetServerConsentParamsWithHTTPClient creates a new GetServerConsentParams object with the ability to set a custom HTTPClient for a request.

func NewGetServerConsentParamsWithTimeout

func NewGetServerConsentParamsWithTimeout(timeout time.Duration) *GetServerConsentParams

NewGetServerConsentParamsWithTimeout creates a new GetServerConsentParams object with the ability to set a timeout on a request.

func (*GetServerConsentParams) SetContext

func (o *GetServerConsentParams) SetContext(ctx context.Context)

SetContext adds the context to the get server consent params

func (*GetServerConsentParams) SetDefaults

func (o *GetServerConsentParams) SetDefaults()

SetDefaults hydrates default values in the get server consent params (not the query body).

All values with no default are reset to their zero value.

func (*GetServerConsentParams) SetHTTPClient

func (o *GetServerConsentParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get server consent params

func (*GetServerConsentParams) SetIfMatch

func (o *GetServerConsentParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the get server consent params

func (*GetServerConsentParams) SetTimeout

func (o *GetServerConsentParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get server consent params

func (*GetServerConsentParams) SetWid

func (o *GetServerConsentParams) SetWid(wid string)

SetWid adds the wid to the get server consent params

func (*GetServerConsentParams) WithContext

WithContext adds the context to the get server consent params

func (*GetServerConsentParams) WithDefaults

WithDefaults hydrates default values in the get server consent params (not the query body).

All values with no default are reset to their zero value.

func (*GetServerConsentParams) WithHTTPClient

func (o *GetServerConsentParams) WithHTTPClient(client *http.Client) *GetServerConsentParams

WithHTTPClient adds the HTTPClient to the get server consent params

func (*GetServerConsentParams) WithIfMatch

func (o *GetServerConsentParams) WithIfMatch(ifMatch *string) *GetServerConsentParams

WithIfMatch adds the ifMatch to the get server consent params

func (*GetServerConsentParams) WithTimeout

WithTimeout adds the timeout to the get server consent params

func (*GetServerConsentParams) WithWid

WithWid adds the wid to the get server consent params

func (*GetServerConsentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServerConsentReader

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

GetServerConsentReader is a Reader for the GetServerConsent structure.

func (*GetServerConsentReader) ReadResponse

func (o *GetServerConsentReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetServerConsentTooManyRequests

type GetServerConsentTooManyRequests struct {
	Payload *models.Error
}

GetServerConsentTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewGetServerConsentTooManyRequests

func NewGetServerConsentTooManyRequests() *GetServerConsentTooManyRequests

NewGetServerConsentTooManyRequests creates a GetServerConsentTooManyRequests with default headers values

func (*GetServerConsentTooManyRequests) Code

Code gets the status code for the get server consent too many requests response

func (*GetServerConsentTooManyRequests) Error

func (*GetServerConsentTooManyRequests) GetPayload

func (o *GetServerConsentTooManyRequests) GetPayload() *models.Error

func (*GetServerConsentTooManyRequests) IsClientError

func (o *GetServerConsentTooManyRequests) IsClientError() bool

IsClientError returns true when this get server consent too many requests response has a 4xx status code

func (*GetServerConsentTooManyRequests) IsCode

func (o *GetServerConsentTooManyRequests) IsCode(code int) bool

IsCode returns true when this get server consent too many requests response a status code equal to that given

func (*GetServerConsentTooManyRequests) IsRedirect

func (o *GetServerConsentTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get server consent too many requests response has a 3xx status code

func (*GetServerConsentTooManyRequests) IsServerError

func (o *GetServerConsentTooManyRequests) IsServerError() bool

IsServerError returns true when this get server consent too many requests response has a 5xx status code

func (*GetServerConsentTooManyRequests) IsSuccess

func (o *GetServerConsentTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get server consent too many requests response has a 2xx status code

func (*GetServerConsentTooManyRequests) String

type GetServerConsentUnauthorized

type GetServerConsentUnauthorized struct {
	Payload *models.Error
}

GetServerConsentUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetServerConsentUnauthorized

func NewGetServerConsentUnauthorized() *GetServerConsentUnauthorized

NewGetServerConsentUnauthorized creates a GetServerConsentUnauthorized with default headers values

func (*GetServerConsentUnauthorized) Code

Code gets the status code for the get server consent unauthorized response

func (*GetServerConsentUnauthorized) Error

func (*GetServerConsentUnauthorized) GetPayload

func (o *GetServerConsentUnauthorized) GetPayload() *models.Error

func (*GetServerConsentUnauthorized) IsClientError

func (o *GetServerConsentUnauthorized) IsClientError() bool

IsClientError returns true when this get server consent unauthorized response has a 4xx status code

func (*GetServerConsentUnauthorized) IsCode

func (o *GetServerConsentUnauthorized) IsCode(code int) bool

IsCode returns true when this get server consent unauthorized response a status code equal to that given

func (*GetServerConsentUnauthorized) IsRedirect

func (o *GetServerConsentUnauthorized) IsRedirect() bool

IsRedirect returns true when this get server consent unauthorized response has a 3xx status code

func (*GetServerConsentUnauthorized) IsServerError

func (o *GetServerConsentUnauthorized) IsServerError() bool

IsServerError returns true when this get server consent unauthorized response has a 5xx status code

func (*GetServerConsentUnauthorized) IsSuccess

func (o *GetServerConsentUnauthorized) IsSuccess() bool

IsSuccess returns true when this get server consent unauthorized response has a 2xx status code

func (*GetServerConsentUnauthorized) String

type GetServerThemeForbidden

type GetServerThemeForbidden struct {
	Payload *models.Error
}

GetServerThemeForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetServerThemeForbidden

func NewGetServerThemeForbidden() *GetServerThemeForbidden

NewGetServerThemeForbidden creates a GetServerThemeForbidden with default headers values

func (*GetServerThemeForbidden) Code

func (o *GetServerThemeForbidden) Code() int

Code gets the status code for the get server theme forbidden response

func (*GetServerThemeForbidden) Error

func (o *GetServerThemeForbidden) Error() string

func (*GetServerThemeForbidden) GetPayload

func (o *GetServerThemeForbidden) GetPayload() *models.Error

func (*GetServerThemeForbidden) IsClientError

func (o *GetServerThemeForbidden) IsClientError() bool

IsClientError returns true when this get server theme forbidden response has a 4xx status code

func (*GetServerThemeForbidden) IsCode

func (o *GetServerThemeForbidden) IsCode(code int) bool

IsCode returns true when this get server theme forbidden response a status code equal to that given

func (*GetServerThemeForbidden) IsRedirect

func (o *GetServerThemeForbidden) IsRedirect() bool

IsRedirect returns true when this get server theme forbidden response has a 3xx status code

func (*GetServerThemeForbidden) IsServerError

func (o *GetServerThemeForbidden) IsServerError() bool

IsServerError returns true when this get server theme forbidden response has a 5xx status code

func (*GetServerThemeForbidden) IsSuccess

func (o *GetServerThemeForbidden) IsSuccess() bool

IsSuccess returns true when this get server theme forbidden response has a 2xx status code

func (*GetServerThemeForbidden) String

func (o *GetServerThemeForbidden) String() string

type GetServerThemeNotFound

type GetServerThemeNotFound struct {
	Payload *models.Error
}

GetServerThemeNotFound describes a response with status code 404, with default header values.

Not found

func NewGetServerThemeNotFound

func NewGetServerThemeNotFound() *GetServerThemeNotFound

NewGetServerThemeNotFound creates a GetServerThemeNotFound with default headers values

func (*GetServerThemeNotFound) Code

func (o *GetServerThemeNotFound) Code() int

Code gets the status code for the get server theme not found response

func (*GetServerThemeNotFound) Error

func (o *GetServerThemeNotFound) Error() string

func (*GetServerThemeNotFound) GetPayload

func (o *GetServerThemeNotFound) GetPayload() *models.Error

func (*GetServerThemeNotFound) IsClientError

func (o *GetServerThemeNotFound) IsClientError() bool

IsClientError returns true when this get server theme not found response has a 4xx status code

func (*GetServerThemeNotFound) IsCode

func (o *GetServerThemeNotFound) IsCode(code int) bool

IsCode returns true when this get server theme not found response a status code equal to that given

func (*GetServerThemeNotFound) IsRedirect

func (o *GetServerThemeNotFound) IsRedirect() bool

IsRedirect returns true when this get server theme not found response has a 3xx status code

func (*GetServerThemeNotFound) IsServerError

func (o *GetServerThemeNotFound) IsServerError() bool

IsServerError returns true when this get server theme not found response has a 5xx status code

func (*GetServerThemeNotFound) IsSuccess

func (o *GetServerThemeNotFound) IsSuccess() bool

IsSuccess returns true when this get server theme not found response has a 2xx status code

func (*GetServerThemeNotFound) String

func (o *GetServerThemeNotFound) String() string

type GetServerThemeOK

type GetServerThemeOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerToTheme
}

GetServerThemeOK describes a response with status code 200, with default header values.

Server to Theme binding

func NewGetServerThemeOK

func NewGetServerThemeOK() *GetServerThemeOK

NewGetServerThemeOK creates a GetServerThemeOK with default headers values

func (*GetServerThemeOK) Code

func (o *GetServerThemeOK) Code() int

Code gets the status code for the get server theme o k response

func (*GetServerThemeOK) Error

func (o *GetServerThemeOK) Error() string

func (*GetServerThemeOK) GetPayload

func (o *GetServerThemeOK) GetPayload() *models.ServerToTheme

func (*GetServerThemeOK) IsClientError

func (o *GetServerThemeOK) IsClientError() bool

IsClientError returns true when this get server theme o k response has a 4xx status code

func (*GetServerThemeOK) IsCode

func (o *GetServerThemeOK) IsCode(code int) bool

IsCode returns true when this get server theme o k response a status code equal to that given

func (*GetServerThemeOK) IsRedirect

func (o *GetServerThemeOK) IsRedirect() bool

IsRedirect returns true when this get server theme o k response has a 3xx status code

func (*GetServerThemeOK) IsServerError

func (o *GetServerThemeOK) IsServerError() bool

IsServerError returns true when this get server theme o k response has a 5xx status code

func (*GetServerThemeOK) IsSuccess

func (o *GetServerThemeOK) IsSuccess() bool

IsSuccess returns true when this get server theme o k response has a 2xx status code

func (*GetServerThemeOK) String

func (o *GetServerThemeOK) String() string

type GetServerThemeParams

type GetServerThemeParams 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
}

GetServerThemeParams contains all the parameters to send to the API endpoint

for the get server theme operation.

Typically these are written to a http.Request.

func NewGetServerThemeParams

func NewGetServerThemeParams() *GetServerThemeParams

NewGetServerThemeParams creates a new GetServerThemeParams 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 NewGetServerThemeParamsWithContext

func NewGetServerThemeParamsWithContext(ctx context.Context) *GetServerThemeParams

NewGetServerThemeParamsWithContext creates a new GetServerThemeParams object with the ability to set a context for a request.

func NewGetServerThemeParamsWithHTTPClient

func NewGetServerThemeParamsWithHTTPClient(client *http.Client) *GetServerThemeParams

NewGetServerThemeParamsWithHTTPClient creates a new GetServerThemeParams object with the ability to set a custom HTTPClient for a request.

func NewGetServerThemeParamsWithTimeout

func NewGetServerThemeParamsWithTimeout(timeout time.Duration) *GetServerThemeParams

NewGetServerThemeParamsWithTimeout creates a new GetServerThemeParams object with the ability to set a timeout on a request.

func (*GetServerThemeParams) SetContext

func (o *GetServerThemeParams) SetContext(ctx context.Context)

SetContext adds the context to the get server theme params

func (*GetServerThemeParams) SetDefaults

func (o *GetServerThemeParams) SetDefaults()

SetDefaults hydrates default values in the get server theme params (not the query body).

All values with no default are reset to their zero value.

func (*GetServerThemeParams) SetHTTPClient

func (o *GetServerThemeParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get server theme params

func (*GetServerThemeParams) SetIfMatch

func (o *GetServerThemeParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the get server theme params

func (*GetServerThemeParams) SetTimeout

func (o *GetServerThemeParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get server theme params

func (*GetServerThemeParams) SetWid

func (o *GetServerThemeParams) SetWid(wid string)

SetWid adds the wid to the get server theme params

func (*GetServerThemeParams) WithContext

WithContext adds the context to the get server theme params

func (*GetServerThemeParams) WithDefaults

func (o *GetServerThemeParams) WithDefaults() *GetServerThemeParams

WithDefaults hydrates default values in the get server theme params (not the query body).

All values with no default are reset to their zero value.

func (*GetServerThemeParams) WithHTTPClient

func (o *GetServerThemeParams) WithHTTPClient(client *http.Client) *GetServerThemeParams

WithHTTPClient adds the HTTPClient to the get server theme params

func (*GetServerThemeParams) WithIfMatch

func (o *GetServerThemeParams) WithIfMatch(ifMatch *string) *GetServerThemeParams

WithIfMatch adds the ifMatch to the get server theme params

func (*GetServerThemeParams) WithTimeout

func (o *GetServerThemeParams) WithTimeout(timeout time.Duration) *GetServerThemeParams

WithTimeout adds the timeout to the get server theme params

func (*GetServerThemeParams) WithWid

WithWid adds the wid to the get server theme params

func (*GetServerThemeParams) WriteToRequest

func (o *GetServerThemeParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetServerThemeReader

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

GetServerThemeReader is a Reader for the GetServerTheme structure.

func (*GetServerThemeReader) ReadResponse

func (o *GetServerThemeReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetServerThemeTooManyRequests

type GetServerThemeTooManyRequests struct {
	Payload *models.Error
}

GetServerThemeTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewGetServerThemeTooManyRequests

func NewGetServerThemeTooManyRequests() *GetServerThemeTooManyRequests

NewGetServerThemeTooManyRequests creates a GetServerThemeTooManyRequests with default headers values

func (*GetServerThemeTooManyRequests) Code

Code gets the status code for the get server theme too many requests response

func (*GetServerThemeTooManyRequests) Error

func (*GetServerThemeTooManyRequests) GetPayload

func (o *GetServerThemeTooManyRequests) GetPayload() *models.Error

func (*GetServerThemeTooManyRequests) IsClientError

func (o *GetServerThemeTooManyRequests) IsClientError() bool

IsClientError returns true when this get server theme too many requests response has a 4xx status code

func (*GetServerThemeTooManyRequests) IsCode

func (o *GetServerThemeTooManyRequests) IsCode(code int) bool

IsCode returns true when this get server theme too many requests response a status code equal to that given

func (*GetServerThemeTooManyRequests) IsRedirect

func (o *GetServerThemeTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get server theme too many requests response has a 3xx status code

func (*GetServerThemeTooManyRequests) IsServerError

func (o *GetServerThemeTooManyRequests) IsServerError() bool

IsServerError returns true when this get server theme too many requests response has a 5xx status code

func (*GetServerThemeTooManyRequests) IsSuccess

func (o *GetServerThemeTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get server theme too many requests response has a 2xx status code

func (*GetServerThemeTooManyRequests) String

type GetServerThemeUnauthorized

type GetServerThemeUnauthorized struct {
	Payload *models.Error
}

GetServerThemeUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetServerThemeUnauthorized

func NewGetServerThemeUnauthorized() *GetServerThemeUnauthorized

NewGetServerThemeUnauthorized creates a GetServerThemeUnauthorized with default headers values

func (*GetServerThemeUnauthorized) Code

func (o *GetServerThemeUnauthorized) Code() int

Code gets the status code for the get server theme unauthorized response

func (*GetServerThemeUnauthorized) Error

func (*GetServerThemeUnauthorized) GetPayload

func (o *GetServerThemeUnauthorized) GetPayload() *models.Error

func (*GetServerThemeUnauthorized) IsClientError

func (o *GetServerThemeUnauthorized) IsClientError() bool

IsClientError returns true when this get server theme unauthorized response has a 4xx status code

func (*GetServerThemeUnauthorized) IsCode

func (o *GetServerThemeUnauthorized) IsCode(code int) bool

IsCode returns true when this get server theme unauthorized response a status code equal to that given

func (*GetServerThemeUnauthorized) IsRedirect

func (o *GetServerThemeUnauthorized) IsRedirect() bool

IsRedirect returns true when this get server theme unauthorized response has a 3xx status code

func (*GetServerThemeUnauthorized) IsServerError

func (o *GetServerThemeUnauthorized) IsServerError() bool

IsServerError returns true when this get server theme unauthorized response has a 5xx status code

func (*GetServerThemeUnauthorized) IsSuccess

func (o *GetServerThemeUnauthorized) IsSuccess() bool

IsSuccess returns true when this get server theme unauthorized response has a 2xx status code

func (*GetServerThemeUnauthorized) String

func (o *GetServerThemeUnauthorized) String() string

type ListAuthorizationServersForbidden

type ListAuthorizationServersForbidden struct {
	Payload *models.Error
}

ListAuthorizationServersForbidden describes a response with status code 403, with default header values.

Forbidden

func NewListAuthorizationServersForbidden

func NewListAuthorizationServersForbidden() *ListAuthorizationServersForbidden

NewListAuthorizationServersForbidden creates a ListAuthorizationServersForbidden with default headers values

func (*ListAuthorizationServersForbidden) Code

Code gets the status code for the list authorization servers forbidden response

func (*ListAuthorizationServersForbidden) Error

func (*ListAuthorizationServersForbidden) GetPayload

func (*ListAuthorizationServersForbidden) IsClientError

func (o *ListAuthorizationServersForbidden) IsClientError() bool

IsClientError returns true when this list authorization servers forbidden response has a 4xx status code

func (*ListAuthorizationServersForbidden) IsCode

func (o *ListAuthorizationServersForbidden) IsCode(code int) bool

IsCode returns true when this list authorization servers forbidden response a status code equal to that given

func (*ListAuthorizationServersForbidden) IsRedirect

func (o *ListAuthorizationServersForbidden) IsRedirect() bool

IsRedirect returns true when this list authorization servers forbidden response has a 3xx status code

func (*ListAuthorizationServersForbidden) IsServerError

func (o *ListAuthorizationServersForbidden) IsServerError() bool

IsServerError returns true when this list authorization servers forbidden response has a 5xx status code

func (*ListAuthorizationServersForbidden) IsSuccess

func (o *ListAuthorizationServersForbidden) IsSuccess() bool

IsSuccess returns true when this list authorization servers forbidden response has a 2xx status code

func (*ListAuthorizationServersForbidden) String

type ListAuthorizationServersNotFound

type ListAuthorizationServersNotFound struct {
	Payload *models.Error
}

ListAuthorizationServersNotFound describes a response with status code 404, with default header values.

Not found

func NewListAuthorizationServersNotFound

func NewListAuthorizationServersNotFound() *ListAuthorizationServersNotFound

NewListAuthorizationServersNotFound creates a ListAuthorizationServersNotFound with default headers values

func (*ListAuthorizationServersNotFound) Code

Code gets the status code for the list authorization servers not found response

func (*ListAuthorizationServersNotFound) Error

func (*ListAuthorizationServersNotFound) GetPayload

func (*ListAuthorizationServersNotFound) IsClientError

func (o *ListAuthorizationServersNotFound) IsClientError() bool

IsClientError returns true when this list authorization servers not found response has a 4xx status code

func (*ListAuthorizationServersNotFound) IsCode

func (o *ListAuthorizationServersNotFound) IsCode(code int) bool

IsCode returns true when this list authorization servers not found response a status code equal to that given

func (*ListAuthorizationServersNotFound) IsRedirect

func (o *ListAuthorizationServersNotFound) IsRedirect() bool

IsRedirect returns true when this list authorization servers not found response has a 3xx status code

func (*ListAuthorizationServersNotFound) IsServerError

func (o *ListAuthorizationServersNotFound) IsServerError() bool

IsServerError returns true when this list authorization servers not found response has a 5xx status code

func (*ListAuthorizationServersNotFound) IsSuccess

func (o *ListAuthorizationServersNotFound) IsSuccess() bool

IsSuccess returns true when this list authorization servers not found response has a 2xx status code

func (*ListAuthorizationServersNotFound) String

type ListAuthorizationServersOK

type ListAuthorizationServersOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServersResponse
}

ListAuthorizationServersOK describes a response with status code 200, with default header values.

Servers

func NewListAuthorizationServersOK

func NewListAuthorizationServersOK() *ListAuthorizationServersOK

NewListAuthorizationServersOK creates a ListAuthorizationServersOK with default headers values

func (*ListAuthorizationServersOK) Code

func (o *ListAuthorizationServersOK) Code() int

Code gets the status code for the list authorization servers o k response

func (*ListAuthorizationServersOK) Error

func (*ListAuthorizationServersOK) GetPayload

func (*ListAuthorizationServersOK) IsClientError

func (o *ListAuthorizationServersOK) IsClientError() bool

IsClientError returns true when this list authorization servers o k response has a 4xx status code

func (*ListAuthorizationServersOK) IsCode

func (o *ListAuthorizationServersOK) IsCode(code int) bool

IsCode returns true when this list authorization servers o k response a status code equal to that given

func (*ListAuthorizationServersOK) IsRedirect

func (o *ListAuthorizationServersOK) IsRedirect() bool

IsRedirect returns true when this list authorization servers o k response has a 3xx status code

func (*ListAuthorizationServersOK) IsServerError

func (o *ListAuthorizationServersOK) IsServerError() bool

IsServerError returns true when this list authorization servers o k response has a 5xx status code

func (*ListAuthorizationServersOK) IsSuccess

func (o *ListAuthorizationServersOK) IsSuccess() bool

IsSuccess returns true when this list authorization servers o k response has a 2xx status code

func (*ListAuthorizationServersOK) String

func (o *ListAuthorizationServersOK) String() string

type ListAuthorizationServersParams

type ListAuthorizationServersParams struct {

	/* AfterServerID.

	     optional list servers after given id
	AfterServerID
	*/
	AfterServerID *string

	/* BeforeServerID.

	     optional list servers before given id
	BeforeServerID
	*/
	BeforeServerID *string

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Limit.

	     optional limit results
	Limit

	     Format: int64
	     Default: 20
	*/
	Limit *int64

	/* Order.

	     optional order servers by given direction
	Order
	*/
	Order *string

	/* SearchPhrase.

	     Optional search phrase: server id OR server name substring (case insensitive)
	SearchPhrase
	*/
	SearchPhrase *string

	/* ServerTypes.

	   comma separated server types that are to be filtered out

	   Default: "admin,developer,system,regular,organization"
	*/
	ServerTypes *string

	/* Sort.

	     optional sort servers by given field
	Sort
	*/
	Sort *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ListAuthorizationServersParams contains all the parameters to send to the API endpoint

for the list authorization servers operation.

Typically these are written to a http.Request.

func NewListAuthorizationServersParams

func NewListAuthorizationServersParams() *ListAuthorizationServersParams

NewListAuthorizationServersParams creates a new ListAuthorizationServersParams 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 NewListAuthorizationServersParamsWithContext

func NewListAuthorizationServersParamsWithContext(ctx context.Context) *ListAuthorizationServersParams

NewListAuthorizationServersParamsWithContext creates a new ListAuthorizationServersParams object with the ability to set a context for a request.

func NewListAuthorizationServersParamsWithHTTPClient

func NewListAuthorizationServersParamsWithHTTPClient(client *http.Client) *ListAuthorizationServersParams

NewListAuthorizationServersParamsWithHTTPClient creates a new ListAuthorizationServersParams object with the ability to set a custom HTTPClient for a request.

func NewListAuthorizationServersParamsWithTimeout

func NewListAuthorizationServersParamsWithTimeout(timeout time.Duration) *ListAuthorizationServersParams

NewListAuthorizationServersParamsWithTimeout creates a new ListAuthorizationServersParams object with the ability to set a timeout on a request.

func (*ListAuthorizationServersParams) SetAfterServerID

func (o *ListAuthorizationServersParams) SetAfterServerID(afterServerID *string)

SetAfterServerID adds the afterServerId to the list authorization servers params

func (*ListAuthorizationServersParams) SetBeforeServerID

func (o *ListAuthorizationServersParams) SetBeforeServerID(beforeServerID *string)

SetBeforeServerID adds the beforeServerId to the list authorization servers params

func (*ListAuthorizationServersParams) SetContext

func (o *ListAuthorizationServersParams) SetContext(ctx context.Context)

SetContext adds the context to the list authorization servers params

func (*ListAuthorizationServersParams) SetDefaults

func (o *ListAuthorizationServersParams) SetDefaults()

SetDefaults hydrates default values in the list authorization servers params (not the query body).

All values with no default are reset to their zero value.

func (*ListAuthorizationServersParams) SetHTTPClient

func (o *ListAuthorizationServersParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the list authorization servers params

func (*ListAuthorizationServersParams) SetIfMatch

func (o *ListAuthorizationServersParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the list authorization servers params

func (*ListAuthorizationServersParams) SetLimit

func (o *ListAuthorizationServersParams) SetLimit(limit *int64)

SetLimit adds the limit to the list authorization servers params

func (*ListAuthorizationServersParams) SetOrder

func (o *ListAuthorizationServersParams) SetOrder(order *string)

SetOrder adds the order to the list authorization servers params

func (*ListAuthorizationServersParams) SetSearchPhrase

func (o *ListAuthorizationServersParams) SetSearchPhrase(searchPhrase *string)

SetSearchPhrase adds the searchPhrase to the list authorization servers params

func (*ListAuthorizationServersParams) SetServerTypes

func (o *ListAuthorizationServersParams) SetServerTypes(serverTypes *string)

SetServerTypes adds the serverTypes to the list authorization servers params

func (*ListAuthorizationServersParams) SetSort

func (o *ListAuthorizationServersParams) SetSort(sort *string)

SetSort adds the sort to the list authorization servers params

func (*ListAuthorizationServersParams) SetTimeout

func (o *ListAuthorizationServersParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the list authorization servers params

func (*ListAuthorizationServersParams) WithAfterServerID

func (o *ListAuthorizationServersParams) WithAfterServerID(afterServerID *string) *ListAuthorizationServersParams

WithAfterServerID adds the afterServerID to the list authorization servers params

func (*ListAuthorizationServersParams) WithBeforeServerID

func (o *ListAuthorizationServersParams) WithBeforeServerID(beforeServerID *string) *ListAuthorizationServersParams

WithBeforeServerID adds the beforeServerID to the list authorization servers params

func (*ListAuthorizationServersParams) WithContext

WithContext adds the context to the list authorization servers params

func (*ListAuthorizationServersParams) WithDefaults

WithDefaults hydrates default values in the list authorization servers params (not the query body).

All values with no default are reset to their zero value.

func (*ListAuthorizationServersParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list authorization servers params

func (*ListAuthorizationServersParams) WithIfMatch

WithIfMatch adds the ifMatch to the list authorization servers params

func (*ListAuthorizationServersParams) WithLimit

WithLimit adds the limit to the list authorization servers params

func (*ListAuthorizationServersParams) WithOrder

WithOrder adds the order to the list authorization servers params

func (*ListAuthorizationServersParams) WithSearchPhrase

func (o *ListAuthorizationServersParams) WithSearchPhrase(searchPhrase *string) *ListAuthorizationServersParams

WithSearchPhrase adds the searchPhrase to the list authorization servers params

func (*ListAuthorizationServersParams) WithServerTypes

func (o *ListAuthorizationServersParams) WithServerTypes(serverTypes *string) *ListAuthorizationServersParams

WithServerTypes adds the serverTypes to the list authorization servers params

func (*ListAuthorizationServersParams) WithSort

WithSort adds the sort to the list authorization servers params

func (*ListAuthorizationServersParams) WithTimeout

WithTimeout adds the timeout to the list authorization servers params

func (*ListAuthorizationServersParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListAuthorizationServersReader

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

ListAuthorizationServersReader is a Reader for the ListAuthorizationServers structure.

func (*ListAuthorizationServersReader) ReadResponse

func (o *ListAuthorizationServersReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ListAuthorizationServersTooManyRequests

type ListAuthorizationServersTooManyRequests struct {
	Payload *models.Error
}

ListAuthorizationServersTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewListAuthorizationServersTooManyRequests

func NewListAuthorizationServersTooManyRequests() *ListAuthorizationServersTooManyRequests

NewListAuthorizationServersTooManyRequests creates a ListAuthorizationServersTooManyRequests with default headers values

func (*ListAuthorizationServersTooManyRequests) Code

Code gets the status code for the list authorization servers too many requests response

func (*ListAuthorizationServersTooManyRequests) Error

func (*ListAuthorizationServersTooManyRequests) GetPayload

func (*ListAuthorizationServersTooManyRequests) IsClientError

func (o *ListAuthorizationServersTooManyRequests) IsClientError() bool

IsClientError returns true when this list authorization servers too many requests response has a 4xx status code

func (*ListAuthorizationServersTooManyRequests) IsCode

IsCode returns true when this list authorization servers too many requests response a status code equal to that given

func (*ListAuthorizationServersTooManyRequests) IsRedirect

IsRedirect returns true when this list authorization servers too many requests response has a 3xx status code

func (*ListAuthorizationServersTooManyRequests) IsServerError

func (o *ListAuthorizationServersTooManyRequests) IsServerError() bool

IsServerError returns true when this list authorization servers too many requests response has a 5xx status code

func (*ListAuthorizationServersTooManyRequests) IsSuccess

IsSuccess returns true when this list authorization servers too many requests response has a 2xx status code

func (*ListAuthorizationServersTooManyRequests) String

type ListAuthorizationServersUnauthorized

type ListAuthorizationServersUnauthorized struct {
	Payload *models.Error
}

ListAuthorizationServersUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewListAuthorizationServersUnauthorized

func NewListAuthorizationServersUnauthorized() *ListAuthorizationServersUnauthorized

NewListAuthorizationServersUnauthorized creates a ListAuthorizationServersUnauthorized with default headers values

func (*ListAuthorizationServersUnauthorized) Code

Code gets the status code for the list authorization servers unauthorized response

func (*ListAuthorizationServersUnauthorized) Error

func (*ListAuthorizationServersUnauthorized) GetPayload

func (*ListAuthorizationServersUnauthorized) IsClientError

func (o *ListAuthorizationServersUnauthorized) IsClientError() bool

IsClientError returns true when this list authorization servers unauthorized response has a 4xx status code

func (*ListAuthorizationServersUnauthorized) IsCode

IsCode returns true when this list authorization servers unauthorized response a status code equal to that given

func (*ListAuthorizationServersUnauthorized) IsRedirect

IsRedirect returns true when this list authorization servers unauthorized response has a 3xx status code

func (*ListAuthorizationServersUnauthorized) IsServerError

func (o *ListAuthorizationServersUnauthorized) IsServerError() bool

IsServerError returns true when this list authorization servers unauthorized response has a 5xx status code

func (*ListAuthorizationServersUnauthorized) IsSuccess

IsSuccess returns true when this list authorization servers unauthorized response has a 2xx status code

func (*ListAuthorizationServersUnauthorized) String

type ListServersBindingsForbidden

type ListServersBindingsForbidden struct {
	Payload *models.Error
}

ListServersBindingsForbidden describes a response with status code 403, with default header values.

Forbidden

func NewListServersBindingsForbidden

func NewListServersBindingsForbidden() *ListServersBindingsForbidden

NewListServersBindingsForbidden creates a ListServersBindingsForbidden with default headers values

func (*ListServersBindingsForbidden) Code

Code gets the status code for the list servers bindings forbidden response

func (*ListServersBindingsForbidden) Error

func (*ListServersBindingsForbidden) GetPayload

func (o *ListServersBindingsForbidden) GetPayload() *models.Error

func (*ListServersBindingsForbidden) IsClientError

func (o *ListServersBindingsForbidden) IsClientError() bool

IsClientError returns true when this list servers bindings forbidden response has a 4xx status code

func (*ListServersBindingsForbidden) IsCode

func (o *ListServersBindingsForbidden) IsCode(code int) bool

IsCode returns true when this list servers bindings forbidden response a status code equal to that given

func (*ListServersBindingsForbidden) IsRedirect

func (o *ListServersBindingsForbidden) IsRedirect() bool

IsRedirect returns true when this list servers bindings forbidden response has a 3xx status code

func (*ListServersBindingsForbidden) IsServerError

func (o *ListServersBindingsForbidden) IsServerError() bool

IsServerError returns true when this list servers bindings forbidden response has a 5xx status code

func (*ListServersBindingsForbidden) IsSuccess

func (o *ListServersBindingsForbidden) IsSuccess() bool

IsSuccess returns true when this list servers bindings forbidden response has a 2xx status code

func (*ListServersBindingsForbidden) String

type ListServersBindingsNotFound

type ListServersBindingsNotFound struct {
	Payload *models.Error
}

ListServersBindingsNotFound describes a response with status code 404, with default header values.

Not found

func NewListServersBindingsNotFound

func NewListServersBindingsNotFound() *ListServersBindingsNotFound

NewListServersBindingsNotFound creates a ListServersBindingsNotFound with default headers values

func (*ListServersBindingsNotFound) Code

func (o *ListServersBindingsNotFound) Code() int

Code gets the status code for the list servers bindings not found response

func (*ListServersBindingsNotFound) Error

func (*ListServersBindingsNotFound) GetPayload

func (o *ListServersBindingsNotFound) GetPayload() *models.Error

func (*ListServersBindingsNotFound) IsClientError

func (o *ListServersBindingsNotFound) IsClientError() bool

IsClientError returns true when this list servers bindings not found response has a 4xx status code

func (*ListServersBindingsNotFound) IsCode

func (o *ListServersBindingsNotFound) IsCode(code int) bool

IsCode returns true when this list servers bindings not found response a status code equal to that given

func (*ListServersBindingsNotFound) IsRedirect

func (o *ListServersBindingsNotFound) IsRedirect() bool

IsRedirect returns true when this list servers bindings not found response has a 3xx status code

func (*ListServersBindingsNotFound) IsServerError

func (o *ListServersBindingsNotFound) IsServerError() bool

IsServerError returns true when this list servers bindings not found response has a 5xx status code

func (*ListServersBindingsNotFound) IsSuccess

func (o *ListServersBindingsNotFound) IsSuccess() bool

IsSuccess returns true when this list servers bindings not found response has a 2xx status code

func (*ListServersBindingsNotFound) String

func (o *ListServersBindingsNotFound) String() string

type ListServersBindingsOK

type ListServersBindingsOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServersBindingsResponse
}

ListServersBindingsOK describes a response with status code 200, with default header values.

Server bindings

func NewListServersBindingsOK

func NewListServersBindingsOK() *ListServersBindingsOK

NewListServersBindingsOK creates a ListServersBindingsOK with default headers values

func (*ListServersBindingsOK) Code

func (o *ListServersBindingsOK) Code() int

Code gets the status code for the list servers bindings o k response

func (*ListServersBindingsOK) Error

func (o *ListServersBindingsOK) Error() string

func (*ListServersBindingsOK) GetPayload

func (*ListServersBindingsOK) IsClientError

func (o *ListServersBindingsOK) IsClientError() bool

IsClientError returns true when this list servers bindings o k response has a 4xx status code

func (*ListServersBindingsOK) IsCode

func (o *ListServersBindingsOK) IsCode(code int) bool

IsCode returns true when this list servers bindings o k response a status code equal to that given

func (*ListServersBindingsOK) IsRedirect

func (o *ListServersBindingsOK) IsRedirect() bool

IsRedirect returns true when this list servers bindings o k response has a 3xx status code

func (*ListServersBindingsOK) IsServerError

func (o *ListServersBindingsOK) IsServerError() bool

IsServerError returns true when this list servers bindings o k response has a 5xx status code

func (*ListServersBindingsOK) IsSuccess

func (o *ListServersBindingsOK) IsSuccess() bool

IsSuccess returns true when this list servers bindings o k response has a 2xx status code

func (*ListServersBindingsOK) String

func (o *ListServersBindingsOK) String() string

type ListServersBindingsParams

type ListServersBindingsParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ListServersBindingsParams contains all the parameters to send to the API endpoint

for the list servers bindings operation.

Typically these are written to a http.Request.

func NewListServersBindingsParams

func NewListServersBindingsParams() *ListServersBindingsParams

NewListServersBindingsParams creates a new ListServersBindingsParams 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 NewListServersBindingsParamsWithContext

func NewListServersBindingsParamsWithContext(ctx context.Context) *ListServersBindingsParams

NewListServersBindingsParamsWithContext creates a new ListServersBindingsParams object with the ability to set a context for a request.

func NewListServersBindingsParamsWithHTTPClient

func NewListServersBindingsParamsWithHTTPClient(client *http.Client) *ListServersBindingsParams

NewListServersBindingsParamsWithHTTPClient creates a new ListServersBindingsParams object with the ability to set a custom HTTPClient for a request.

func NewListServersBindingsParamsWithTimeout

func NewListServersBindingsParamsWithTimeout(timeout time.Duration) *ListServersBindingsParams

NewListServersBindingsParamsWithTimeout creates a new ListServersBindingsParams object with the ability to set a timeout on a request.

func (*ListServersBindingsParams) SetContext

func (o *ListServersBindingsParams) SetContext(ctx context.Context)

SetContext adds the context to the list servers bindings params

func (*ListServersBindingsParams) SetDefaults

func (o *ListServersBindingsParams) SetDefaults()

SetDefaults hydrates default values in the list servers bindings params (not the query body).

All values with no default are reset to their zero value.

func (*ListServersBindingsParams) SetHTTPClient

func (o *ListServersBindingsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the list servers bindings params

func (*ListServersBindingsParams) SetIfMatch

func (o *ListServersBindingsParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the list servers bindings params

func (*ListServersBindingsParams) SetTimeout

func (o *ListServersBindingsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the list servers bindings params

func (*ListServersBindingsParams) WithContext

WithContext adds the context to the list servers bindings params

func (*ListServersBindingsParams) WithDefaults

WithDefaults hydrates default values in the list servers bindings params (not the query body).

All values with no default are reset to their zero value.

func (*ListServersBindingsParams) WithHTTPClient

func (o *ListServersBindingsParams) WithHTTPClient(client *http.Client) *ListServersBindingsParams

WithHTTPClient adds the HTTPClient to the list servers bindings params

func (*ListServersBindingsParams) WithIfMatch

WithIfMatch adds the ifMatch to the list servers bindings params

func (*ListServersBindingsParams) WithTimeout

WithTimeout adds the timeout to the list servers bindings params

func (*ListServersBindingsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListServersBindingsReader

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

ListServersBindingsReader is a Reader for the ListServersBindings structure.

func (*ListServersBindingsReader) ReadResponse

func (o *ListServersBindingsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type ListServersBindingsTooManyRequests

type ListServersBindingsTooManyRequests struct {
	Payload *models.Error
}

ListServersBindingsTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewListServersBindingsTooManyRequests

func NewListServersBindingsTooManyRequests() *ListServersBindingsTooManyRequests

NewListServersBindingsTooManyRequests creates a ListServersBindingsTooManyRequests with default headers values

func (*ListServersBindingsTooManyRequests) Code

Code gets the status code for the list servers bindings too many requests response

func (*ListServersBindingsTooManyRequests) Error

func (*ListServersBindingsTooManyRequests) GetPayload

func (*ListServersBindingsTooManyRequests) IsClientError

func (o *ListServersBindingsTooManyRequests) IsClientError() bool

IsClientError returns true when this list servers bindings too many requests response has a 4xx status code

func (*ListServersBindingsTooManyRequests) IsCode

IsCode returns true when this list servers bindings too many requests response a status code equal to that given

func (*ListServersBindingsTooManyRequests) IsRedirect

func (o *ListServersBindingsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this list servers bindings too many requests response has a 3xx status code

func (*ListServersBindingsTooManyRequests) IsServerError

func (o *ListServersBindingsTooManyRequests) IsServerError() bool

IsServerError returns true when this list servers bindings too many requests response has a 5xx status code

func (*ListServersBindingsTooManyRequests) IsSuccess

IsSuccess returns true when this list servers bindings too many requests response has a 2xx status code

func (*ListServersBindingsTooManyRequests) String

type ListServersBindingsUnauthorized

type ListServersBindingsUnauthorized struct {
	Payload *models.Error
}

ListServersBindingsUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewListServersBindingsUnauthorized

func NewListServersBindingsUnauthorized() *ListServersBindingsUnauthorized

NewListServersBindingsUnauthorized creates a ListServersBindingsUnauthorized with default headers values

func (*ListServersBindingsUnauthorized) Code

Code gets the status code for the list servers bindings unauthorized response

func (*ListServersBindingsUnauthorized) Error

func (*ListServersBindingsUnauthorized) GetPayload

func (o *ListServersBindingsUnauthorized) GetPayload() *models.Error

func (*ListServersBindingsUnauthorized) IsClientError

func (o *ListServersBindingsUnauthorized) IsClientError() bool

IsClientError returns true when this list servers bindings unauthorized response has a 4xx status code

func (*ListServersBindingsUnauthorized) IsCode

func (o *ListServersBindingsUnauthorized) IsCode(code int) bool

IsCode returns true when this list servers bindings unauthorized response a status code equal to that given

func (*ListServersBindingsUnauthorized) IsRedirect

func (o *ListServersBindingsUnauthorized) IsRedirect() bool

IsRedirect returns true when this list servers bindings unauthorized response has a 3xx status code

func (*ListServersBindingsUnauthorized) IsServerError

func (o *ListServersBindingsUnauthorized) IsServerError() bool

IsServerError returns true when this list servers bindings unauthorized response has a 5xx status code

func (*ListServersBindingsUnauthorized) IsSuccess

func (o *ListServersBindingsUnauthorized) IsSuccess() bool

IsSuccess returns true when this list servers bindings unauthorized response has a 2xx status code

func (*ListServersBindingsUnauthorized) String

type SetCIBAAuthenticationServiceForbidden

type SetCIBAAuthenticationServiceForbidden struct {
	Payload *models.Error
}

SetCIBAAuthenticationServiceForbidden describes a response with status code 403, with default header values.

Forbidden

func NewSetCIBAAuthenticationServiceForbidden

func NewSetCIBAAuthenticationServiceForbidden() *SetCIBAAuthenticationServiceForbidden

NewSetCIBAAuthenticationServiceForbidden creates a SetCIBAAuthenticationServiceForbidden with default headers values

func (*SetCIBAAuthenticationServiceForbidden) Code

Code gets the status code for the set c i b a authentication service forbidden response

func (*SetCIBAAuthenticationServiceForbidden) Error

func (*SetCIBAAuthenticationServiceForbidden) GetPayload

func (*SetCIBAAuthenticationServiceForbidden) IsClientError

func (o *SetCIBAAuthenticationServiceForbidden) IsClientError() bool

IsClientError returns true when this set c i b a authentication service forbidden response has a 4xx status code

func (*SetCIBAAuthenticationServiceForbidden) IsCode

IsCode returns true when this set c i b a authentication service forbidden response a status code equal to that given

func (*SetCIBAAuthenticationServiceForbidden) IsRedirect

IsRedirect returns true when this set c i b a authentication service forbidden response has a 3xx status code

func (*SetCIBAAuthenticationServiceForbidden) IsServerError

func (o *SetCIBAAuthenticationServiceForbidden) IsServerError() bool

IsServerError returns true when this set c i b a authentication service forbidden response has a 5xx status code

func (*SetCIBAAuthenticationServiceForbidden) IsSuccess

IsSuccess returns true when this set c i b a authentication service forbidden response has a 2xx status code

func (*SetCIBAAuthenticationServiceForbidden) String

type SetCIBAAuthenticationServiceNotFound

type SetCIBAAuthenticationServiceNotFound struct {
	Payload *models.Error
}

SetCIBAAuthenticationServiceNotFound describes a response with status code 404, with default header values.

Not found

func NewSetCIBAAuthenticationServiceNotFound

func NewSetCIBAAuthenticationServiceNotFound() *SetCIBAAuthenticationServiceNotFound

NewSetCIBAAuthenticationServiceNotFound creates a SetCIBAAuthenticationServiceNotFound with default headers values

func (*SetCIBAAuthenticationServiceNotFound) Code

Code gets the status code for the set c i b a authentication service not found response

func (*SetCIBAAuthenticationServiceNotFound) Error

func (*SetCIBAAuthenticationServiceNotFound) GetPayload

func (*SetCIBAAuthenticationServiceNotFound) IsClientError

func (o *SetCIBAAuthenticationServiceNotFound) IsClientError() bool

IsClientError returns true when this set c i b a authentication service not found response has a 4xx status code

func (*SetCIBAAuthenticationServiceNotFound) IsCode

IsCode returns true when this set c i b a authentication service not found response a status code equal to that given

func (*SetCIBAAuthenticationServiceNotFound) IsRedirect

IsRedirect returns true when this set c i b a authentication service not found response has a 3xx status code

func (*SetCIBAAuthenticationServiceNotFound) IsServerError

func (o *SetCIBAAuthenticationServiceNotFound) IsServerError() bool

IsServerError returns true when this set c i b a authentication service not found response has a 5xx status code

func (*SetCIBAAuthenticationServiceNotFound) IsSuccess

IsSuccess returns true when this set c i b a authentication service not found response has a 2xx status code

func (*SetCIBAAuthenticationServiceNotFound) String

type SetCIBAAuthenticationServiceOK

type SetCIBAAuthenticationServiceOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.CIBAAuthenticationService
}

SetCIBAAuthenticationServiceOK describes a response with status code 200, with default header values.

CIBA authentication service

func NewSetCIBAAuthenticationServiceOK

func NewSetCIBAAuthenticationServiceOK() *SetCIBAAuthenticationServiceOK

NewSetCIBAAuthenticationServiceOK creates a SetCIBAAuthenticationServiceOK with default headers values

func (*SetCIBAAuthenticationServiceOK) Code

Code gets the status code for the set c i b a authentication service o k response

func (*SetCIBAAuthenticationServiceOK) Error

func (*SetCIBAAuthenticationServiceOK) GetPayload

func (*SetCIBAAuthenticationServiceOK) IsClientError

func (o *SetCIBAAuthenticationServiceOK) IsClientError() bool

IsClientError returns true when this set c i b a authentication service o k response has a 4xx status code

func (*SetCIBAAuthenticationServiceOK) IsCode

func (o *SetCIBAAuthenticationServiceOK) IsCode(code int) bool

IsCode returns true when this set c i b a authentication service o k response a status code equal to that given

func (*SetCIBAAuthenticationServiceOK) IsRedirect

func (o *SetCIBAAuthenticationServiceOK) IsRedirect() bool

IsRedirect returns true when this set c i b a authentication service o k response has a 3xx status code

func (*SetCIBAAuthenticationServiceOK) IsServerError

func (o *SetCIBAAuthenticationServiceOK) IsServerError() bool

IsServerError returns true when this set c i b a authentication service o k response has a 5xx status code

func (*SetCIBAAuthenticationServiceOK) IsSuccess

func (o *SetCIBAAuthenticationServiceOK) IsSuccess() bool

IsSuccess returns true when this set c i b a authentication service o k response has a 2xx status code

func (*SetCIBAAuthenticationServiceOK) String

type SetCIBAAuthenticationServiceParams

type SetCIBAAuthenticationServiceParams struct {

	/* CIBAAuthenticationService.

	   CIBA authentication service
	*/
	CIBAAuthenticationService *models.CIBAAuthenticationService

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id

	   Default: "default"
	*/
	Wid string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SetCIBAAuthenticationServiceParams contains all the parameters to send to the API endpoint

for the set c i b a authentication service operation.

Typically these are written to a http.Request.

func NewSetCIBAAuthenticationServiceParams

func NewSetCIBAAuthenticationServiceParams() *SetCIBAAuthenticationServiceParams

NewSetCIBAAuthenticationServiceParams creates a new SetCIBAAuthenticationServiceParams 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 NewSetCIBAAuthenticationServiceParamsWithContext

func NewSetCIBAAuthenticationServiceParamsWithContext(ctx context.Context) *SetCIBAAuthenticationServiceParams

NewSetCIBAAuthenticationServiceParamsWithContext creates a new SetCIBAAuthenticationServiceParams object with the ability to set a context for a request.

func NewSetCIBAAuthenticationServiceParamsWithHTTPClient

func NewSetCIBAAuthenticationServiceParamsWithHTTPClient(client *http.Client) *SetCIBAAuthenticationServiceParams

NewSetCIBAAuthenticationServiceParamsWithHTTPClient creates a new SetCIBAAuthenticationServiceParams object with the ability to set a custom HTTPClient for a request.

func NewSetCIBAAuthenticationServiceParamsWithTimeout

func NewSetCIBAAuthenticationServiceParamsWithTimeout(timeout time.Duration) *SetCIBAAuthenticationServiceParams

NewSetCIBAAuthenticationServiceParamsWithTimeout creates a new SetCIBAAuthenticationServiceParams object with the ability to set a timeout on a request.

func (*SetCIBAAuthenticationServiceParams) SetCIBAAuthenticationService

func (o *SetCIBAAuthenticationServiceParams) SetCIBAAuthenticationService(cIBAAuthenticationService *models.CIBAAuthenticationService)

SetCIBAAuthenticationService adds the cIBAAuthenticationService to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) SetContext

SetContext adds the context to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) SetDefaults

func (o *SetCIBAAuthenticationServiceParams) SetDefaults()

SetDefaults hydrates default values in the set c i b a authentication service params (not the query body).

All values with no default are reset to their zero value.

func (*SetCIBAAuthenticationServiceParams) SetHTTPClient

func (o *SetCIBAAuthenticationServiceParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) SetIfMatch

func (o *SetCIBAAuthenticationServiceParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) SetTimeout

func (o *SetCIBAAuthenticationServiceParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) SetWid

SetWid adds the wid to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) WithCIBAAuthenticationService

func (o *SetCIBAAuthenticationServiceParams) WithCIBAAuthenticationService(cIBAAuthenticationService *models.CIBAAuthenticationService) *SetCIBAAuthenticationServiceParams

WithCIBAAuthenticationService adds the cIBAAuthenticationService to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) WithContext

WithContext adds the context to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) WithDefaults

WithDefaults hydrates default values in the set c i b a authentication service params (not the query body).

All values with no default are reset to their zero value.

func (*SetCIBAAuthenticationServiceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) WithIfMatch

WithIfMatch adds the ifMatch to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) WithTimeout

WithTimeout adds the timeout to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) WithWid

WithWid adds the wid to the set c i b a authentication service params

func (*SetCIBAAuthenticationServiceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetCIBAAuthenticationServiceReader

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

SetCIBAAuthenticationServiceReader is a Reader for the SetCIBAAuthenticationService structure.

func (*SetCIBAAuthenticationServiceReader) ReadResponse

func (o *SetCIBAAuthenticationServiceReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SetCIBAAuthenticationServiceTooManyRequests

type SetCIBAAuthenticationServiceTooManyRequests struct {
	Payload *models.Error
}

SetCIBAAuthenticationServiceTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewSetCIBAAuthenticationServiceTooManyRequests

func NewSetCIBAAuthenticationServiceTooManyRequests() *SetCIBAAuthenticationServiceTooManyRequests

NewSetCIBAAuthenticationServiceTooManyRequests creates a SetCIBAAuthenticationServiceTooManyRequests with default headers values

func (*SetCIBAAuthenticationServiceTooManyRequests) Code

Code gets the status code for the set c i b a authentication service too many requests response

func (*SetCIBAAuthenticationServiceTooManyRequests) Error

func (*SetCIBAAuthenticationServiceTooManyRequests) GetPayload

func (*SetCIBAAuthenticationServiceTooManyRequests) IsClientError

IsClientError returns true when this set c i b a authentication service too many requests response has a 4xx status code

func (*SetCIBAAuthenticationServiceTooManyRequests) IsCode

IsCode returns true when this set c i b a authentication service too many requests response a status code equal to that given

func (*SetCIBAAuthenticationServiceTooManyRequests) IsRedirect

IsRedirect returns true when this set c i b a authentication service too many requests response has a 3xx status code

func (*SetCIBAAuthenticationServiceTooManyRequests) IsServerError

IsServerError returns true when this set c i b a authentication service too many requests response has a 5xx status code

func (*SetCIBAAuthenticationServiceTooManyRequests) IsSuccess

IsSuccess returns true when this set c i b a authentication service too many requests response has a 2xx status code

func (*SetCIBAAuthenticationServiceTooManyRequests) String

type SetCIBAAuthenticationServiceUnauthorized

type SetCIBAAuthenticationServiceUnauthorized struct {
	Payload *models.Error
}

SetCIBAAuthenticationServiceUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewSetCIBAAuthenticationServiceUnauthorized

func NewSetCIBAAuthenticationServiceUnauthorized() *SetCIBAAuthenticationServiceUnauthorized

NewSetCIBAAuthenticationServiceUnauthorized creates a SetCIBAAuthenticationServiceUnauthorized with default headers values

func (*SetCIBAAuthenticationServiceUnauthorized) Code

Code gets the status code for the set c i b a authentication service unauthorized response

func (*SetCIBAAuthenticationServiceUnauthorized) Error

func (*SetCIBAAuthenticationServiceUnauthorized) GetPayload

func (*SetCIBAAuthenticationServiceUnauthorized) IsClientError

IsClientError returns true when this set c i b a authentication service unauthorized response has a 4xx status code

func (*SetCIBAAuthenticationServiceUnauthorized) IsCode

IsCode returns true when this set c i b a authentication service unauthorized response a status code equal to that given

func (*SetCIBAAuthenticationServiceUnauthorized) IsRedirect

IsRedirect returns true when this set c i b a authentication service unauthorized response has a 3xx status code

func (*SetCIBAAuthenticationServiceUnauthorized) IsServerError

IsServerError returns true when this set c i b a authentication service unauthorized response has a 5xx status code

func (*SetCIBAAuthenticationServiceUnauthorized) IsSuccess

IsSuccess returns true when this set c i b a authentication service unauthorized response has a 2xx status code

func (*SetCIBAAuthenticationServiceUnauthorized) String

type SetServerConsentForbidden

type SetServerConsentForbidden struct {
	Payload *models.Error
}

SetServerConsentForbidden describes a response with status code 403, with default header values.

Forbidden

func NewSetServerConsentForbidden

func NewSetServerConsentForbidden() *SetServerConsentForbidden

NewSetServerConsentForbidden creates a SetServerConsentForbidden with default headers values

func (*SetServerConsentForbidden) Code

func (o *SetServerConsentForbidden) Code() int

Code gets the status code for the set server consent forbidden response

func (*SetServerConsentForbidden) Error

func (o *SetServerConsentForbidden) Error() string

func (*SetServerConsentForbidden) GetPayload

func (o *SetServerConsentForbidden) GetPayload() *models.Error

func (*SetServerConsentForbidden) IsClientError

func (o *SetServerConsentForbidden) IsClientError() bool

IsClientError returns true when this set server consent forbidden response has a 4xx status code

func (*SetServerConsentForbidden) IsCode

func (o *SetServerConsentForbidden) IsCode(code int) bool

IsCode returns true when this set server consent forbidden response a status code equal to that given

func (*SetServerConsentForbidden) IsRedirect

func (o *SetServerConsentForbidden) IsRedirect() bool

IsRedirect returns true when this set server consent forbidden response has a 3xx status code

func (*SetServerConsentForbidden) IsServerError

func (o *SetServerConsentForbidden) IsServerError() bool

IsServerError returns true when this set server consent forbidden response has a 5xx status code

func (*SetServerConsentForbidden) IsSuccess

func (o *SetServerConsentForbidden) IsSuccess() bool

IsSuccess returns true when this set server consent forbidden response has a 2xx status code

func (*SetServerConsentForbidden) String

func (o *SetServerConsentForbidden) String() string

type SetServerConsentNotFound

type SetServerConsentNotFound struct {
	Payload *models.Error
}

SetServerConsentNotFound describes a response with status code 404, with default header values.

Not found

func NewSetServerConsentNotFound

func NewSetServerConsentNotFound() *SetServerConsentNotFound

NewSetServerConsentNotFound creates a SetServerConsentNotFound with default headers values

func (*SetServerConsentNotFound) Code

func (o *SetServerConsentNotFound) Code() int

Code gets the status code for the set server consent not found response

func (*SetServerConsentNotFound) Error

func (o *SetServerConsentNotFound) Error() string

func (*SetServerConsentNotFound) GetPayload

func (o *SetServerConsentNotFound) GetPayload() *models.Error

func (*SetServerConsentNotFound) IsClientError

func (o *SetServerConsentNotFound) IsClientError() bool

IsClientError returns true when this set server consent not found response has a 4xx status code

func (*SetServerConsentNotFound) IsCode

func (o *SetServerConsentNotFound) IsCode(code int) bool

IsCode returns true when this set server consent not found response a status code equal to that given

func (*SetServerConsentNotFound) IsRedirect

func (o *SetServerConsentNotFound) IsRedirect() bool

IsRedirect returns true when this set server consent not found response has a 3xx status code

func (*SetServerConsentNotFound) IsServerError

func (o *SetServerConsentNotFound) IsServerError() bool

IsServerError returns true when this set server consent not found response has a 5xx status code

func (*SetServerConsentNotFound) IsSuccess

func (o *SetServerConsentNotFound) IsSuccess() bool

IsSuccess returns true when this set server consent not found response has a 2xx status code

func (*SetServerConsentNotFound) String

func (o *SetServerConsentNotFound) String() string

type SetServerConsentOK

type SetServerConsentOK struct {
	Payload *models.ServerConsent
}

SetServerConsentOK describes a response with status code 200, with default header values.

ServerConsent

func NewSetServerConsentOK

func NewSetServerConsentOK() *SetServerConsentOK

NewSetServerConsentOK creates a SetServerConsentOK with default headers values

func (*SetServerConsentOK) Code

func (o *SetServerConsentOK) Code() int

Code gets the status code for the set server consent o k response

func (*SetServerConsentOK) Error

func (o *SetServerConsentOK) Error() string

func (*SetServerConsentOK) GetPayload

func (o *SetServerConsentOK) GetPayload() *models.ServerConsent

func (*SetServerConsentOK) IsClientError

func (o *SetServerConsentOK) IsClientError() bool

IsClientError returns true when this set server consent o k response has a 4xx status code

func (*SetServerConsentOK) IsCode

func (o *SetServerConsentOK) IsCode(code int) bool

IsCode returns true when this set server consent o k response a status code equal to that given

func (*SetServerConsentOK) IsRedirect

func (o *SetServerConsentOK) IsRedirect() bool

IsRedirect returns true when this set server consent o k response has a 3xx status code

func (*SetServerConsentOK) IsServerError

func (o *SetServerConsentOK) IsServerError() bool

IsServerError returns true when this set server consent o k response has a 5xx status code

func (*SetServerConsentOK) IsSuccess

func (o *SetServerConsentOK) IsSuccess() bool

IsSuccess returns true when this set server consent o k response has a 2xx status code

func (*SetServerConsentOK) String

func (o *SetServerConsentOK) String() string

type SetServerConsentParams

type SetServerConsentParams struct {

	/* ServerConsent.

	   Server consent
	*/
	ServerConsent *models.ServerConsent

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Wid.

	   Authorization server id

	   Default: "default"
	*/
	Wid string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

SetServerConsentParams contains all the parameters to send to the API endpoint

for the set server consent operation.

Typically these are written to a http.Request.

func NewSetServerConsentParams

func NewSetServerConsentParams() *SetServerConsentParams

NewSetServerConsentParams creates a new SetServerConsentParams 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 NewSetServerConsentParamsWithContext

func NewSetServerConsentParamsWithContext(ctx context.Context) *SetServerConsentParams

NewSetServerConsentParamsWithContext creates a new SetServerConsentParams object with the ability to set a context for a request.

func NewSetServerConsentParamsWithHTTPClient

func NewSetServerConsentParamsWithHTTPClient(client *http.Client) *SetServerConsentParams

NewSetServerConsentParamsWithHTTPClient creates a new SetServerConsentParams object with the ability to set a custom HTTPClient for a request.

func NewSetServerConsentParamsWithTimeout

func NewSetServerConsentParamsWithTimeout(timeout time.Duration) *SetServerConsentParams

NewSetServerConsentParamsWithTimeout creates a new SetServerConsentParams object with the ability to set a timeout on a request.

func (*SetServerConsentParams) SetContext

func (o *SetServerConsentParams) SetContext(ctx context.Context)

SetContext adds the context to the set server consent params

func (*SetServerConsentParams) SetDefaults

func (o *SetServerConsentParams) SetDefaults()

SetDefaults hydrates default values in the set server consent params (not the query body).

All values with no default are reset to their zero value.

func (*SetServerConsentParams) SetHTTPClient

func (o *SetServerConsentParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the set server consent params

func (*SetServerConsentParams) SetIfMatch

func (o *SetServerConsentParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the set server consent params

func (*SetServerConsentParams) SetServerConsent

func (o *SetServerConsentParams) SetServerConsent(serverConsent *models.ServerConsent)

SetServerConsent adds the serverConsent to the set server consent params

func (*SetServerConsentParams) SetTimeout

func (o *SetServerConsentParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the set server consent params

func (*SetServerConsentParams) SetWid

func (o *SetServerConsentParams) SetWid(wid string)

SetWid adds the wid to the set server consent params

func (*SetServerConsentParams) WithContext

WithContext adds the context to the set server consent params

func (*SetServerConsentParams) WithDefaults

WithDefaults hydrates default values in the set server consent params (not the query body).

All values with no default are reset to their zero value.

func (*SetServerConsentParams) WithHTTPClient

func (o *SetServerConsentParams) WithHTTPClient(client *http.Client) *SetServerConsentParams

WithHTTPClient adds the HTTPClient to the set server consent params

func (*SetServerConsentParams) WithIfMatch

func (o *SetServerConsentParams) WithIfMatch(ifMatch *string) *SetServerConsentParams

WithIfMatch adds the ifMatch to the set server consent params

func (*SetServerConsentParams) WithServerConsent

func (o *SetServerConsentParams) WithServerConsent(serverConsent *models.ServerConsent) *SetServerConsentParams

WithServerConsent adds the serverConsent to the set server consent params

func (*SetServerConsentParams) WithTimeout

WithTimeout adds the timeout to the set server consent params

func (*SetServerConsentParams) WithWid

WithWid adds the wid to the set server consent params

func (*SetServerConsentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetServerConsentReader

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

SetServerConsentReader is a Reader for the SetServerConsent structure.

func (*SetServerConsentReader) ReadResponse

func (o *SetServerConsentReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type SetServerConsentTooManyRequests

type SetServerConsentTooManyRequests struct {
	Payload *models.Error
}

SetServerConsentTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewSetServerConsentTooManyRequests

func NewSetServerConsentTooManyRequests() *SetServerConsentTooManyRequests

NewSetServerConsentTooManyRequests creates a SetServerConsentTooManyRequests with default headers values

func (*SetServerConsentTooManyRequests) Code

Code gets the status code for the set server consent too many requests response

func (*SetServerConsentTooManyRequests) Error

func (*SetServerConsentTooManyRequests) GetPayload

func (o *SetServerConsentTooManyRequests) GetPayload() *models.Error

func (*SetServerConsentTooManyRequests) IsClientError

func (o *SetServerConsentTooManyRequests) IsClientError() bool

IsClientError returns true when this set server consent too many requests response has a 4xx status code

func (*SetServerConsentTooManyRequests) IsCode

func (o *SetServerConsentTooManyRequests) IsCode(code int) bool

IsCode returns true when this set server consent too many requests response a status code equal to that given

func (*SetServerConsentTooManyRequests) IsRedirect

func (o *SetServerConsentTooManyRequests) IsRedirect() bool

IsRedirect returns true when this set server consent too many requests response has a 3xx status code

func (*SetServerConsentTooManyRequests) IsServerError

func (o *SetServerConsentTooManyRequests) IsServerError() bool

IsServerError returns true when this set server consent too many requests response has a 5xx status code

func (*SetServerConsentTooManyRequests) IsSuccess

func (o *SetServerConsentTooManyRequests) IsSuccess() bool

IsSuccess returns true when this set server consent too many requests response has a 2xx status code

func (*SetServerConsentTooManyRequests) String

type SetServerConsentUnauthorized

type SetServerConsentUnauthorized struct {
	Payload *models.Error
}

SetServerConsentUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewSetServerConsentUnauthorized

func NewSetServerConsentUnauthorized() *SetServerConsentUnauthorized

NewSetServerConsentUnauthorized creates a SetServerConsentUnauthorized with default headers values

func (*SetServerConsentUnauthorized) Code

Code gets the status code for the set server consent unauthorized response

func (*SetServerConsentUnauthorized) Error

func (*SetServerConsentUnauthorized) GetPayload

func (o *SetServerConsentUnauthorized) GetPayload() *models.Error

func (*SetServerConsentUnauthorized) IsClientError

func (o *SetServerConsentUnauthorized) IsClientError() bool

IsClientError returns true when this set server consent unauthorized response has a 4xx status code

func (*SetServerConsentUnauthorized) IsCode

func (o *SetServerConsentUnauthorized) IsCode(code int) bool

IsCode returns true when this set server consent unauthorized response a status code equal to that given

func (*SetServerConsentUnauthorized) IsRedirect

func (o *SetServerConsentUnauthorized) IsRedirect() bool

IsRedirect returns true when this set server consent unauthorized response has a 3xx status code

func (*SetServerConsentUnauthorized) IsServerError

func (o *SetServerConsentUnauthorized) IsServerError() bool

IsServerError returns true when this set server consent unauthorized response has a 5xx status code

func (*SetServerConsentUnauthorized) IsSuccess

func (o *SetServerConsentUnauthorized) IsSuccess() bool

IsSuccess returns true when this set server consent unauthorized response has a 2xx status code

func (*SetServerConsentUnauthorized) String

type UnbindServerForbidden

type UnbindServerForbidden struct {
	Payload *models.Error
}

UnbindServerForbidden describes a response with status code 403, with default header values.

Forbidden

func NewUnbindServerForbidden

func NewUnbindServerForbidden() *UnbindServerForbidden

NewUnbindServerForbidden creates a UnbindServerForbidden with default headers values

func (*UnbindServerForbidden) Code

func (o *UnbindServerForbidden) Code() int

Code gets the status code for the unbind server forbidden response

func (*UnbindServerForbidden) Error

func (o *UnbindServerForbidden) Error() string

func (*UnbindServerForbidden) GetPayload

func (o *UnbindServerForbidden) GetPayload() *models.Error

func (*UnbindServerForbidden) IsClientError

func (o *UnbindServerForbidden) IsClientError() bool

IsClientError returns true when this unbind server forbidden response has a 4xx status code

func (*UnbindServerForbidden) IsCode

func (o *UnbindServerForbidden) IsCode(code int) bool

IsCode returns true when this unbind server forbidden response a status code equal to that given

func (*UnbindServerForbidden) IsRedirect

func (o *UnbindServerForbidden) IsRedirect() bool

IsRedirect returns true when this unbind server forbidden response has a 3xx status code

func (*UnbindServerForbidden) IsServerError

func (o *UnbindServerForbidden) IsServerError() bool

IsServerError returns true when this unbind server forbidden response has a 5xx status code

func (*UnbindServerForbidden) IsSuccess

func (o *UnbindServerForbidden) IsSuccess() bool

IsSuccess returns true when this unbind server forbidden response has a 2xx status code

func (*UnbindServerForbidden) String

func (o *UnbindServerForbidden) String() string

type UnbindServerNotFound

type UnbindServerNotFound struct {
	Payload *models.Error
}

UnbindServerNotFound describes a response with status code 404, with default header values.

Not found

func NewUnbindServerNotFound

func NewUnbindServerNotFound() *UnbindServerNotFound

NewUnbindServerNotFound creates a UnbindServerNotFound with default headers values

func (*UnbindServerNotFound) Code

func (o *UnbindServerNotFound) Code() int

Code gets the status code for the unbind server not found response

func (*UnbindServerNotFound) Error

func (o *UnbindServerNotFound) Error() string

func (*UnbindServerNotFound) GetPayload

func (o *UnbindServerNotFound) GetPayload() *models.Error

func (*UnbindServerNotFound) IsClientError

func (o *UnbindServerNotFound) IsClientError() bool

IsClientError returns true when this unbind server not found response has a 4xx status code

func (*UnbindServerNotFound) IsCode

func (o *UnbindServerNotFound) IsCode(code int) bool

IsCode returns true when this unbind server not found response a status code equal to that given

func (*UnbindServerNotFound) IsRedirect

func (o *UnbindServerNotFound) IsRedirect() bool

IsRedirect returns true when this unbind server not found response has a 3xx status code

func (*UnbindServerNotFound) IsServerError

func (o *UnbindServerNotFound) IsServerError() bool

IsServerError returns true when this unbind server not found response has a 5xx status code

func (*UnbindServerNotFound) IsSuccess

func (o *UnbindServerNotFound) IsSuccess() bool

IsSuccess returns true when this unbind server not found response has a 2xx status code

func (*UnbindServerNotFound) String

func (o *UnbindServerNotFound) String() string

type UnbindServerOK

type UnbindServerOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerToServer
}

UnbindServerOK describes a response with status code 200, with default header values.

Server to server binding

func NewUnbindServerOK

func NewUnbindServerOK() *UnbindServerOK

NewUnbindServerOK creates a UnbindServerOK with default headers values

func (*UnbindServerOK) Code

func (o *UnbindServerOK) Code() int

Code gets the status code for the unbind server o k response

func (*UnbindServerOK) Error

func (o *UnbindServerOK) Error() string

func (*UnbindServerOK) GetPayload

func (o *UnbindServerOK) GetPayload() *models.ServerToServer

func (*UnbindServerOK) IsClientError

func (o *UnbindServerOK) IsClientError() bool

IsClientError returns true when this unbind server o k response has a 4xx status code

func (*UnbindServerOK) IsCode

func (o *UnbindServerOK) IsCode(code int) bool

IsCode returns true when this unbind server o k response a status code equal to that given

func (*UnbindServerOK) IsRedirect

func (o *UnbindServerOK) IsRedirect() bool

IsRedirect returns true when this unbind server o k response has a 3xx status code

func (*UnbindServerOK) IsServerError

func (o *UnbindServerOK) IsServerError() bool

IsServerError returns true when this unbind server o k response has a 5xx status code

func (*UnbindServerOK) IsSuccess

func (o *UnbindServerOK) IsSuccess() bool

IsSuccess returns true when this unbind server o k response has a 2xx status code

func (*UnbindServerOK) String

func (o *UnbindServerOK) String() string

type UnbindServerParams

type UnbindServerParams struct {

	/* IfMatch.

	   A server will only return requested resources if the resource matches one of the listed ETag value

	   Format: etag
	*/
	IfMatch *string

	/* Rid.

	   Dependent server id

	   Default: "default"
	*/
	Rid string

	/* Wid.

	   Workspace id

	   Default: "default"
	*/
	Wid string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

UnbindServerParams contains all the parameters to send to the API endpoint

for the unbind server operation.

Typically these are written to a http.Request.

func NewUnbindServerParams

func NewUnbindServerParams() *UnbindServerParams

NewUnbindServerParams creates a new UnbindServerParams 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 NewUnbindServerParamsWithContext

func NewUnbindServerParamsWithContext(ctx context.Context) *UnbindServerParams

NewUnbindServerParamsWithContext creates a new UnbindServerParams object with the ability to set a context for a request.

func NewUnbindServerParamsWithHTTPClient

func NewUnbindServerParamsWithHTTPClient(client *http.Client) *UnbindServerParams

NewUnbindServerParamsWithHTTPClient creates a new UnbindServerParams object with the ability to set a custom HTTPClient for a request.

func NewUnbindServerParamsWithTimeout

func NewUnbindServerParamsWithTimeout(timeout time.Duration) *UnbindServerParams

NewUnbindServerParamsWithTimeout creates a new UnbindServerParams object with the ability to set a timeout on a request.

func (*UnbindServerParams) SetContext

func (o *UnbindServerParams) SetContext(ctx context.Context)

SetContext adds the context to the unbind server params

func (*UnbindServerParams) SetDefaults

func (o *UnbindServerParams) SetDefaults()

SetDefaults hydrates default values in the unbind server params (not the query body).

All values with no default are reset to their zero value.

func (*UnbindServerParams) SetHTTPClient

func (o *UnbindServerParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the unbind server params

func (*UnbindServerParams) SetIfMatch

func (o *UnbindServerParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the unbind server params

func (*UnbindServerParams) SetRid

func (o *UnbindServerParams) SetRid(rid string)

SetRid adds the rid to the unbind server params

func (*UnbindServerParams) SetTimeout

func (o *UnbindServerParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the unbind server params

func (*UnbindServerParams) SetWid

func (o *UnbindServerParams) SetWid(wid string)

SetWid adds the wid to the unbind server params

func (*UnbindServerParams) WithContext

WithContext adds the context to the unbind server params

func (*UnbindServerParams) WithDefaults

func (o *UnbindServerParams) WithDefaults() *UnbindServerParams

WithDefaults hydrates default values in the unbind server params (not the query body).

All values with no default are reset to their zero value.

func (*UnbindServerParams) WithHTTPClient

func (o *UnbindServerParams) WithHTTPClient(client *http.Client) *UnbindServerParams

WithHTTPClient adds the HTTPClient to the unbind server params

func (*UnbindServerParams) WithIfMatch

func (o *UnbindServerParams) WithIfMatch(ifMatch *string) *UnbindServerParams

WithIfMatch adds the ifMatch to the unbind server params

func (*UnbindServerParams) WithRid

func (o *UnbindServerParams) WithRid(rid string) *UnbindServerParams

WithRid adds the rid to the unbind server params

func (*UnbindServerParams) WithTimeout

func (o *UnbindServerParams) WithTimeout(timeout time.Duration) *UnbindServerParams

WithTimeout adds the timeout to the unbind server params

func (*UnbindServerParams) WithWid

func (o *UnbindServerParams) WithWid(wid string) *UnbindServerParams

WithWid adds the wid to the unbind server params

func (*UnbindServerParams) WriteToRequest

func (o *UnbindServerParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type UnbindServerReader

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

UnbindServerReader is a Reader for the UnbindServer structure.

func (*UnbindServerReader) ReadResponse

func (o *UnbindServerReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type UnbindServerThemeForbidden

type UnbindServerThemeForbidden struct {
	Payload *models.Error
}

UnbindServerThemeForbidden describes a response with status code 403, with default header values.

Forbidden

func NewUnbindServerThemeForbidden

func NewUnbindServerThemeForbidden() *UnbindServerThemeForbidden

NewUnbindServerThemeForbidden creates a UnbindServerThemeForbidden with default headers values

func (*UnbindServerThemeForbidden) Code

func (o *UnbindServerThemeForbidden) Code() int

Code gets the status code for the unbind server theme forbidden response

func (*UnbindServerThemeForbidden) Error

func (*UnbindServerThemeForbidden) GetPayload

func (o *UnbindServerThemeForbidden) GetPayload() *models.Error

func (*UnbindServerThemeForbidden) IsClientError

func (o *UnbindServerThemeForbidden) IsClientError() bool

IsClientError returns true when this unbind server theme forbidden response has a 4xx status code

func (*UnbindServerThemeForbidden) IsCode

func (o *UnbindServerThemeForbidden) IsCode(code int) bool

IsCode returns true when this unbind server theme forbidden response a status code equal to that given

func (*UnbindServerThemeForbidden) IsRedirect

func (o *UnbindServerThemeForbidden) IsRedirect() bool

IsRedirect returns true when this unbind server theme forbidden response has a 3xx status code

func (*UnbindServerThemeForbidden) IsServerError

func (o *UnbindServerThemeForbidden) IsServerError() bool

IsServerError returns true when this unbind server theme forbidden response has a 5xx status code

func (*UnbindServerThemeForbidden) IsSuccess

func (o *UnbindServerThemeForbidden) IsSuccess() bool

IsSuccess returns true when this unbind server theme forbidden response has a 2xx status code

func (*UnbindServerThemeForbidden) String

func (o *UnbindServerThemeForbidden) String() string

type UnbindServerThemeNotFound

type UnbindServerThemeNotFound struct {
	Payload *models.Error
}

UnbindServerThemeNotFound describes a response with status code 404, with default header values.

Not found

func NewUnbindServerThemeNotFound

func NewUnbindServerThemeNotFound() *UnbindServerThemeNotFound

NewUnbindServerThemeNotFound creates a UnbindServerThemeNotFound with default headers values

func (*UnbindServerThemeNotFound) Code

func (o *UnbindServerThemeNotFound) Code() int

Code gets the status code for the unbind server theme not found response

func (*UnbindServerThemeNotFound) Error

func (o *UnbindServerThemeNotFound) Error() string

func (*UnbindServerThemeNotFound) GetPayload

func (o *UnbindServerThemeNotFound) GetPayload() *models.Error

func (*UnbindServerThemeNotFound) IsClientError

func (o *UnbindServerThemeNotFound) IsClientError() bool

IsClientError returns true when this unbind server theme not found response has a 4xx status code

func (*UnbindServerThemeNotFound) IsCode

func (o *UnbindServerThemeNotFound) IsCode(code int) bool

IsCode returns true when this unbind server theme not found response a status code equal to that given

func (*UnbindServerThemeNotFound) IsRedirect

func (o *UnbindServerThemeNotFound) IsRedirect() bool

IsRedirect returns true when this unbind server theme not found response has a 3xx status code

func (*UnbindServerThemeNotFound) IsServerError

func (o *UnbindServerThemeNotFound) IsServerError() bool

IsServerError returns true when this unbind server theme not found response has a 5xx status code

func (*UnbindServerThemeNotFound) IsSuccess

func (o *UnbindServerThemeNotFound) IsSuccess() bool

IsSuccess returns true when this unbind server theme not found response has a 2xx status code

func (*UnbindServerThemeNotFound) String

func (o *UnbindServerThemeNotFound) String() string

type UnbindServerThemeOK

type UnbindServerThemeOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerToTheme
}

UnbindServerThemeOK describes a response with status code 200, with default header values.

Server to Theme binding

func NewUnbindServerThemeOK

func NewUnbindServerThemeOK() *UnbindServerThemeOK

NewUnbindServerThemeOK creates a UnbindServerThemeOK with default headers values

func (*UnbindServerThemeOK) Code

func (o *UnbindServerThemeOK) Code() int

Code gets the status code for the unbind server theme o k response

func (*UnbindServerThemeOK) Error

func (o *UnbindServerThemeOK) Error() string

func (*UnbindServerThemeOK) GetPayload

func (o *UnbindServerThemeOK) GetPayload() *models.ServerToTheme

func (*UnbindServerThemeOK) IsClientError

func (o *UnbindServerThemeOK) IsClientError() bool

IsClientError returns true when this unbind server theme o k response has a 4xx status code

func (*UnbindServerThemeOK) IsCode

func (o *UnbindServerThemeOK) IsCode(code int) bool

IsCode returns true when this unbind server theme o k response a status code equal to that given

func (*UnbindServerThemeOK) IsRedirect

func (o *UnbindServerThemeOK) IsRedirect() bool

IsRedirect returns true when this unbind server theme o k response has a 3xx status code

func (*UnbindServerThemeOK) IsServerError

func (o *UnbindServerThemeOK) IsServerError() bool

IsServerError returns true when this unbind server theme o k response has a 5xx status code

func (*UnbindServerThemeOK) IsSuccess

func (o *UnbindServerThemeOK) IsSuccess() bool

IsSuccess returns true when this unbind server theme o k response has a 2xx status code

func (*UnbindServerThemeOK) String

func (o *UnbindServerThemeOK) String() string

type UnbindServerThemeParams

type UnbindServerThemeParams 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
}

UnbindServerThemeParams contains all the parameters to send to the API endpoint

for the unbind server theme operation.

Typically these are written to a http.Request.

func NewUnbindServerThemeParams

func NewUnbindServerThemeParams() *UnbindServerThemeParams

NewUnbindServerThemeParams creates a new UnbindServerThemeParams 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 NewUnbindServerThemeParamsWithContext

func NewUnbindServerThemeParamsWithContext(ctx context.Context) *UnbindServerThemeParams

NewUnbindServerThemeParamsWithContext creates a new UnbindServerThemeParams object with the ability to set a context for a request.

func NewUnbindServerThemeParamsWithHTTPClient

func NewUnbindServerThemeParamsWithHTTPClient(client *http.Client) *UnbindServerThemeParams

NewUnbindServerThemeParamsWithHTTPClient creates a new UnbindServerThemeParams object with the ability to set a custom HTTPClient for a request.

func NewUnbindServerThemeParamsWithTimeout

func NewUnbindServerThemeParamsWithTimeout(timeout time.Duration) *UnbindServerThemeParams

NewUnbindServerThemeParamsWithTimeout creates a new UnbindServerThemeParams object with the ability to set a timeout on a request.

func (*UnbindServerThemeParams) SetContext

func (o *UnbindServerThemeParams) SetContext(ctx context.Context)

SetContext adds the context to the unbind server theme params

func (*UnbindServerThemeParams) SetDefaults

func (o *UnbindServerThemeParams) SetDefaults()

SetDefaults hydrates default values in the unbind server theme params (not the query body).

All values with no default are reset to their zero value.

func (*UnbindServerThemeParams) SetHTTPClient

func (o *UnbindServerThemeParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the unbind server theme params

func (*UnbindServerThemeParams) SetIfMatch

func (o *UnbindServerThemeParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the unbind server theme params

func (*UnbindServerThemeParams) SetTimeout

func (o *UnbindServerThemeParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the unbind server theme params

func (*UnbindServerThemeParams) SetWid

func (o *UnbindServerThemeParams) SetWid(wid string)

SetWid adds the wid to the unbind server theme params

func (*UnbindServerThemeParams) WithContext

WithContext adds the context to the unbind server theme params

func (*UnbindServerThemeParams) WithDefaults

WithDefaults hydrates default values in the unbind server theme params (not the query body).

All values with no default are reset to their zero value.

func (*UnbindServerThemeParams) WithHTTPClient

func (o *UnbindServerThemeParams) WithHTTPClient(client *http.Client) *UnbindServerThemeParams

WithHTTPClient adds the HTTPClient to the unbind server theme params

func (*UnbindServerThemeParams) WithIfMatch

func (o *UnbindServerThemeParams) WithIfMatch(ifMatch *string) *UnbindServerThemeParams

WithIfMatch adds the ifMatch to the unbind server theme params

func (*UnbindServerThemeParams) WithTimeout

WithTimeout adds the timeout to the unbind server theme params

func (*UnbindServerThemeParams) WithWid

WithWid adds the wid to the unbind server theme params

func (*UnbindServerThemeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UnbindServerThemeReader

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

UnbindServerThemeReader is a Reader for the UnbindServerTheme structure.

func (*UnbindServerThemeReader) ReadResponse

func (o *UnbindServerThemeReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type UnbindServerThemeTooManyRequests

type UnbindServerThemeTooManyRequests struct {
	Payload *models.Error
}

UnbindServerThemeTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewUnbindServerThemeTooManyRequests

func NewUnbindServerThemeTooManyRequests() *UnbindServerThemeTooManyRequests

NewUnbindServerThemeTooManyRequests creates a UnbindServerThemeTooManyRequests with default headers values

func (*UnbindServerThemeTooManyRequests) Code

Code gets the status code for the unbind server theme too many requests response

func (*UnbindServerThemeTooManyRequests) Error

func (*UnbindServerThemeTooManyRequests) GetPayload

func (*UnbindServerThemeTooManyRequests) IsClientError

func (o *UnbindServerThemeTooManyRequests) IsClientError() bool

IsClientError returns true when this unbind server theme too many requests response has a 4xx status code

func (*UnbindServerThemeTooManyRequests) IsCode

func (o *UnbindServerThemeTooManyRequests) IsCode(code int) bool

IsCode returns true when this unbind server theme too many requests response a status code equal to that given

func (*UnbindServerThemeTooManyRequests) IsRedirect

func (o *UnbindServerThemeTooManyRequests) IsRedirect() bool

IsRedirect returns true when this unbind server theme too many requests response has a 3xx status code

func (*UnbindServerThemeTooManyRequests) IsServerError

func (o *UnbindServerThemeTooManyRequests) IsServerError() bool

IsServerError returns true when this unbind server theme too many requests response has a 5xx status code

func (*UnbindServerThemeTooManyRequests) IsSuccess

func (o *UnbindServerThemeTooManyRequests) IsSuccess() bool

IsSuccess returns true when this unbind server theme too many requests response has a 2xx status code

func (*UnbindServerThemeTooManyRequests) String

type UnbindServerThemeUnauthorized

type UnbindServerThemeUnauthorized struct {
	Payload *models.Error
}

UnbindServerThemeUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewUnbindServerThemeUnauthorized

func NewUnbindServerThemeUnauthorized() *UnbindServerThemeUnauthorized

NewUnbindServerThemeUnauthorized creates a UnbindServerThemeUnauthorized with default headers values

func (*UnbindServerThemeUnauthorized) Code

Code gets the status code for the unbind server theme unauthorized response

func (*UnbindServerThemeUnauthorized) Error

func (*UnbindServerThemeUnauthorized) GetPayload

func (o *UnbindServerThemeUnauthorized) GetPayload() *models.Error

func (*UnbindServerThemeUnauthorized) IsClientError

func (o *UnbindServerThemeUnauthorized) IsClientError() bool

IsClientError returns true when this unbind server theme unauthorized response has a 4xx status code

func (*UnbindServerThemeUnauthorized) IsCode

func (o *UnbindServerThemeUnauthorized) IsCode(code int) bool

IsCode returns true when this unbind server theme unauthorized response a status code equal to that given

func (*UnbindServerThemeUnauthorized) IsRedirect

func (o *UnbindServerThemeUnauthorized) IsRedirect() bool

IsRedirect returns true when this unbind server theme unauthorized response has a 3xx status code

func (*UnbindServerThemeUnauthorized) IsServerError

func (o *UnbindServerThemeUnauthorized) IsServerError() bool

IsServerError returns true when this unbind server theme unauthorized response has a 5xx status code

func (*UnbindServerThemeUnauthorized) IsSuccess

func (o *UnbindServerThemeUnauthorized) IsSuccess() bool

IsSuccess returns true when this unbind server theme unauthorized response has a 2xx status code

func (*UnbindServerThemeUnauthorized) String

type UnbindServerTooManyRequests

type UnbindServerTooManyRequests struct {
	Payload *models.Error
}

UnbindServerTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewUnbindServerTooManyRequests

func NewUnbindServerTooManyRequests() *UnbindServerTooManyRequests

NewUnbindServerTooManyRequests creates a UnbindServerTooManyRequests with default headers values

func (*UnbindServerTooManyRequests) Code

func (o *UnbindServerTooManyRequests) Code() int

Code gets the status code for the unbind server too many requests response

func (*UnbindServerTooManyRequests) Error

func (*UnbindServerTooManyRequests) GetPayload

func (o *UnbindServerTooManyRequests) GetPayload() *models.Error

func (*UnbindServerTooManyRequests) IsClientError

func (o *UnbindServerTooManyRequests) IsClientError() bool

IsClientError returns true when this unbind server too many requests response has a 4xx status code

func (*UnbindServerTooManyRequests) IsCode

func (o *UnbindServerTooManyRequests) IsCode(code int) bool

IsCode returns true when this unbind server too many requests response a status code equal to that given

func (*UnbindServerTooManyRequests) IsRedirect

func (o *UnbindServerTooManyRequests) IsRedirect() bool

IsRedirect returns true when this unbind server too many requests response has a 3xx status code

func (*UnbindServerTooManyRequests) IsServerError

func (o *UnbindServerTooManyRequests) IsServerError() bool

IsServerError returns true when this unbind server too many requests response has a 5xx status code

func (*UnbindServerTooManyRequests) IsSuccess

func (o *UnbindServerTooManyRequests) IsSuccess() bool

IsSuccess returns true when this unbind server too many requests response has a 2xx status code

func (*UnbindServerTooManyRequests) String

func (o *UnbindServerTooManyRequests) String() string

type UnbindServerUnauthorized

type UnbindServerUnauthorized struct {
	Payload *models.Error
}

UnbindServerUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewUnbindServerUnauthorized

func NewUnbindServerUnauthorized() *UnbindServerUnauthorized

NewUnbindServerUnauthorized creates a UnbindServerUnauthorized with default headers values

func (*UnbindServerUnauthorized) Code

func (o *UnbindServerUnauthorized) Code() int

Code gets the status code for the unbind server unauthorized response

func (*UnbindServerUnauthorized) Error

func (o *UnbindServerUnauthorized) Error() string

func (*UnbindServerUnauthorized) GetPayload

func (o *UnbindServerUnauthorized) GetPayload() *models.Error

func (*UnbindServerUnauthorized) IsClientError

func (o *UnbindServerUnauthorized) IsClientError() bool

IsClientError returns true when this unbind server unauthorized response has a 4xx status code

func (*UnbindServerUnauthorized) IsCode

func (o *UnbindServerUnauthorized) IsCode(code int) bool

IsCode returns true when this unbind server unauthorized response a status code equal to that given

func (*UnbindServerUnauthorized) IsRedirect

func (o *UnbindServerUnauthorized) IsRedirect() bool

IsRedirect returns true when this unbind server unauthorized response has a 3xx status code

func (*UnbindServerUnauthorized) IsServerError

func (o *UnbindServerUnauthorized) IsServerError() bool

IsServerError returns true when this unbind server unauthorized response has a 5xx status code

func (*UnbindServerUnauthorized) IsSuccess

func (o *UnbindServerUnauthorized) IsSuccess() bool

IsSuccess returns true when this unbind server unauthorized response has a 2xx status code

func (*UnbindServerUnauthorized) String

func (o *UnbindServerUnauthorized) String() string

type UpdateAuthorizationServerBadRequest

type UpdateAuthorizationServerBadRequest struct {
	Payload *models.Error
}

UpdateAuthorizationServerBadRequest describes a response with status code 400, with default header values.

Bad request

func NewUpdateAuthorizationServerBadRequest

func NewUpdateAuthorizationServerBadRequest() *UpdateAuthorizationServerBadRequest

NewUpdateAuthorizationServerBadRequest creates a UpdateAuthorizationServerBadRequest with default headers values

func (*UpdateAuthorizationServerBadRequest) Code

Code gets the status code for the update authorization server bad request response

func (*UpdateAuthorizationServerBadRequest) Error

func (*UpdateAuthorizationServerBadRequest) GetPayload

func (*UpdateAuthorizationServerBadRequest) IsClientError

func (o *UpdateAuthorizationServerBadRequest) IsClientError() bool

IsClientError returns true when this update authorization server bad request response has a 4xx status code

func (*UpdateAuthorizationServerBadRequest) IsCode

IsCode returns true when this update authorization server bad request response a status code equal to that given

func (*UpdateAuthorizationServerBadRequest) IsRedirect

func (o *UpdateAuthorizationServerBadRequest) IsRedirect() bool

IsRedirect returns true when this update authorization server bad request response has a 3xx status code

func (*UpdateAuthorizationServerBadRequest) IsServerError

func (o *UpdateAuthorizationServerBadRequest) IsServerError() bool

IsServerError returns true when this update authorization server bad request response has a 5xx status code

func (*UpdateAuthorizationServerBadRequest) IsSuccess

IsSuccess returns true when this update authorization server bad request response has a 2xx status code

func (*UpdateAuthorizationServerBadRequest) String

type UpdateAuthorizationServerForbidden

type UpdateAuthorizationServerForbidden struct {
	Payload *models.Error
}

UpdateAuthorizationServerForbidden describes a response with status code 403, with default header values.

Forbidden

func NewUpdateAuthorizationServerForbidden

func NewUpdateAuthorizationServerForbidden() *UpdateAuthorizationServerForbidden

NewUpdateAuthorizationServerForbidden creates a UpdateAuthorizationServerForbidden with default headers values

func (*UpdateAuthorizationServerForbidden) Code

Code gets the status code for the update authorization server forbidden response

func (*UpdateAuthorizationServerForbidden) Error

func (*UpdateAuthorizationServerForbidden) GetPayload

func (*UpdateAuthorizationServerForbidden) IsClientError

func (o *UpdateAuthorizationServerForbidden) IsClientError() bool

IsClientError returns true when this update authorization server forbidden response has a 4xx status code

func (*UpdateAuthorizationServerForbidden) IsCode

IsCode returns true when this update authorization server forbidden response a status code equal to that given

func (*UpdateAuthorizationServerForbidden) IsRedirect

func (o *UpdateAuthorizationServerForbidden) IsRedirect() bool

IsRedirect returns true when this update authorization server forbidden response has a 3xx status code

func (*UpdateAuthorizationServerForbidden) IsServerError

func (o *UpdateAuthorizationServerForbidden) IsServerError() bool

IsServerError returns true when this update authorization server forbidden response has a 5xx status code

func (*UpdateAuthorizationServerForbidden) IsSuccess

IsSuccess returns true when this update authorization server forbidden response has a 2xx status code

func (*UpdateAuthorizationServerForbidden) String

type UpdateAuthorizationServerNotFound

type UpdateAuthorizationServerNotFound struct {
	Payload *models.Error
}

UpdateAuthorizationServerNotFound describes a response with status code 404, with default header values.

Not found

func NewUpdateAuthorizationServerNotFound

func NewUpdateAuthorizationServerNotFound() *UpdateAuthorizationServerNotFound

NewUpdateAuthorizationServerNotFound creates a UpdateAuthorizationServerNotFound with default headers values

func (*UpdateAuthorizationServerNotFound) Code

Code gets the status code for the update authorization server not found response

func (*UpdateAuthorizationServerNotFound) Error

func (*UpdateAuthorizationServerNotFound) GetPayload

func (*UpdateAuthorizationServerNotFound) IsClientError

func (o *UpdateAuthorizationServerNotFound) IsClientError() bool

IsClientError returns true when this update authorization server not found response has a 4xx status code

func (*UpdateAuthorizationServerNotFound) IsCode

func (o *UpdateAuthorizationServerNotFound) IsCode(code int) bool

IsCode returns true when this update authorization server not found response a status code equal to that given

func (*UpdateAuthorizationServerNotFound) IsRedirect

func (o *UpdateAuthorizationServerNotFound) IsRedirect() bool

IsRedirect returns true when this update authorization server not found response has a 3xx status code

func (*UpdateAuthorizationServerNotFound) IsServerError

func (o *UpdateAuthorizationServerNotFound) IsServerError() bool

IsServerError returns true when this update authorization server not found response has a 5xx status code

func (*UpdateAuthorizationServerNotFound) IsSuccess

func (o *UpdateAuthorizationServerNotFound) IsSuccess() bool

IsSuccess returns true when this update authorization server not found response has a 2xx status code

func (*UpdateAuthorizationServerNotFound) String

type UpdateAuthorizationServerOK

type UpdateAuthorizationServerOK struct {

	/* The ETag HTTP header is an identifier for a specific version of a resource

	in:header

	     Format: etag
	*/
	Etag string

	Payload *models.ServerResponse
}

UpdateAuthorizationServerOK describes a response with status code 200, with default header values.

Server

func NewUpdateAuthorizationServerOK

func NewUpdateAuthorizationServerOK() *UpdateAuthorizationServerOK

NewUpdateAuthorizationServerOK creates a UpdateAuthorizationServerOK with default headers values

func (*UpdateAuthorizationServerOK) Code

func (o *UpdateAuthorizationServerOK) Code() int

Code gets the status code for the update authorization server o k response

func (*UpdateAuthorizationServerOK) Error

func (*UpdateAuthorizationServerOK) GetPayload

func (*UpdateAuthorizationServerOK) IsClientError

func (o *UpdateAuthorizationServerOK) IsClientError() bool

IsClientError returns true when this update authorization server o k response has a 4xx status code

func (*UpdateAuthorizationServerOK) IsCode

func (o *UpdateAuthorizationServerOK) IsCode(code int) bool

IsCode returns true when this update authorization server o k response a status code equal to that given

func (*UpdateAuthorizationServerOK) IsRedirect

func (o *UpdateAuthorizationServerOK) IsRedirect() bool

IsRedirect returns true when this update authorization server o k response has a 3xx status code

func (*UpdateAuthorizationServerOK) IsServerError

func (o *UpdateAuthorizationServerOK) IsServerError() bool

IsServerError returns true when this update authorization server o k response has a 5xx status code

func (*UpdateAuthorizationServerOK) IsSuccess

func (o *UpdateAuthorizationServerOK) IsSuccess() bool

IsSuccess returns true when this update authorization server o k response has a 2xx status code

func (*UpdateAuthorizationServerOK) String

func (o *UpdateAuthorizationServerOK) String() string

type UpdateAuthorizationServerParams

type UpdateAuthorizationServerParams struct {

	// Server.
	Server *models.Server

	/* 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
}

UpdateAuthorizationServerParams contains all the parameters to send to the API endpoint

for the update authorization server operation.

Typically these are written to a http.Request.

func NewUpdateAuthorizationServerParams

func NewUpdateAuthorizationServerParams() *UpdateAuthorizationServerParams

NewUpdateAuthorizationServerParams creates a new UpdateAuthorizationServerParams 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 NewUpdateAuthorizationServerParamsWithContext

func NewUpdateAuthorizationServerParamsWithContext(ctx context.Context) *UpdateAuthorizationServerParams

NewUpdateAuthorizationServerParamsWithContext creates a new UpdateAuthorizationServerParams object with the ability to set a context for a request.

func NewUpdateAuthorizationServerParamsWithHTTPClient

func NewUpdateAuthorizationServerParamsWithHTTPClient(client *http.Client) *UpdateAuthorizationServerParams

NewUpdateAuthorizationServerParamsWithHTTPClient creates a new UpdateAuthorizationServerParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateAuthorizationServerParamsWithTimeout

func NewUpdateAuthorizationServerParamsWithTimeout(timeout time.Duration) *UpdateAuthorizationServerParams

NewUpdateAuthorizationServerParamsWithTimeout creates a new UpdateAuthorizationServerParams object with the ability to set a timeout on a request.

func (*UpdateAuthorizationServerParams) SetContext

func (o *UpdateAuthorizationServerParams) SetContext(ctx context.Context)

SetContext adds the context to the update authorization server params

func (*UpdateAuthorizationServerParams) SetDefaults

func (o *UpdateAuthorizationServerParams) SetDefaults()

SetDefaults hydrates default values in the update authorization server params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateAuthorizationServerParams) SetHTTPClient

func (o *UpdateAuthorizationServerParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the update authorization server params

func (*UpdateAuthorizationServerParams) SetIfMatch

func (o *UpdateAuthorizationServerParams) SetIfMatch(ifMatch *string)

SetIfMatch adds the ifMatch to the update authorization server params

func (*UpdateAuthorizationServerParams) SetServer

func (o *UpdateAuthorizationServerParams) SetServer(server *models.Server)

SetServer adds the server to the update authorization server params

func (*UpdateAuthorizationServerParams) SetTimeout

func (o *UpdateAuthorizationServerParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the update authorization server params

func (*UpdateAuthorizationServerParams) SetWid

func (o *UpdateAuthorizationServerParams) SetWid(wid string)

SetWid adds the wid to the update authorization server params

func (*UpdateAuthorizationServerParams) WithContext

WithContext adds the context to the update authorization server params

func (*UpdateAuthorizationServerParams) WithDefaults

WithDefaults hydrates default values in the update authorization server params (not the query body).

All values with no default are reset to their zero value.

func (*UpdateAuthorizationServerParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update authorization server params

func (*UpdateAuthorizationServerParams) WithIfMatch

WithIfMatch adds the ifMatch to the update authorization server params

func (*UpdateAuthorizationServerParams) WithServer

WithServer adds the server to the update authorization server params

func (*UpdateAuthorizationServerParams) WithTimeout

WithTimeout adds the timeout to the update authorization server params

func (*UpdateAuthorizationServerParams) WithWid

WithWid adds the wid to the update authorization server params

func (*UpdateAuthorizationServerParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateAuthorizationServerReader

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

UpdateAuthorizationServerReader is a Reader for the UpdateAuthorizationServer structure.

func (*UpdateAuthorizationServerReader) ReadResponse

func (o *UpdateAuthorizationServerReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type UpdateAuthorizationServerTooManyRequests

type UpdateAuthorizationServerTooManyRequests struct {
	Payload *models.Error
}

UpdateAuthorizationServerTooManyRequests describes a response with status code 429, with default header values.

Too many requests

func NewUpdateAuthorizationServerTooManyRequests

func NewUpdateAuthorizationServerTooManyRequests() *UpdateAuthorizationServerTooManyRequests

NewUpdateAuthorizationServerTooManyRequests creates a UpdateAuthorizationServerTooManyRequests with default headers values

func (*UpdateAuthorizationServerTooManyRequests) Code

Code gets the status code for the update authorization server too many requests response

func (*UpdateAuthorizationServerTooManyRequests) Error

func (*UpdateAuthorizationServerTooManyRequests) GetPayload

func (*UpdateAuthorizationServerTooManyRequests) IsClientError

IsClientError returns true when this update authorization server too many requests response has a 4xx status code

func (*UpdateAuthorizationServerTooManyRequests) IsCode

IsCode returns true when this update authorization server too many requests response a status code equal to that given

func (*UpdateAuthorizationServerTooManyRequests) IsRedirect

IsRedirect returns true when this update authorization server too many requests response has a 3xx status code

func (*UpdateAuthorizationServerTooManyRequests) IsServerError

IsServerError returns true when this update authorization server too many requests response has a 5xx status code

func (*UpdateAuthorizationServerTooManyRequests) IsSuccess

IsSuccess returns true when this update authorization server too many requests response has a 2xx status code

func (*UpdateAuthorizationServerTooManyRequests) String

type UpdateAuthorizationServerUnauthorized

type UpdateAuthorizationServerUnauthorized struct {
	Payload *models.Error
}

UpdateAuthorizationServerUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewUpdateAuthorizationServerUnauthorized

func NewUpdateAuthorizationServerUnauthorized() *UpdateAuthorizationServerUnauthorized

NewUpdateAuthorizationServerUnauthorized creates a UpdateAuthorizationServerUnauthorized with default headers values

func (*UpdateAuthorizationServerUnauthorized) Code

Code gets the status code for the update authorization server unauthorized response

func (*UpdateAuthorizationServerUnauthorized) Error

func (*UpdateAuthorizationServerUnauthorized) GetPayload

func (*UpdateAuthorizationServerUnauthorized) IsClientError

func (o *UpdateAuthorizationServerUnauthorized) IsClientError() bool

IsClientError returns true when this update authorization server unauthorized response has a 4xx status code

func (*UpdateAuthorizationServerUnauthorized) IsCode

IsCode returns true when this update authorization server unauthorized response a status code equal to that given

func (*UpdateAuthorizationServerUnauthorized) IsRedirect

IsRedirect returns true when this update authorization server unauthorized response has a 3xx status code

func (*UpdateAuthorizationServerUnauthorized) IsServerError

func (o *UpdateAuthorizationServerUnauthorized) IsServerError() bool

IsServerError returns true when this update authorization server unauthorized response has a 5xx status code

func (*UpdateAuthorizationServerUnauthorized) IsSuccess

IsSuccess returns true when this update authorization server unauthorized response has a 2xx status code

func (*UpdateAuthorizationServerUnauthorized) String

type UpdateAuthorizationServerUnprocessableEntity

type UpdateAuthorizationServerUnprocessableEntity struct {
	Payload *models.Error
}

UpdateAuthorizationServerUnprocessableEntity describes a response with status code 422, with default header values.

Unprocessable entity

func NewUpdateAuthorizationServerUnprocessableEntity

func NewUpdateAuthorizationServerUnprocessableEntity() *UpdateAuthorizationServerUnprocessableEntity

NewUpdateAuthorizationServerUnprocessableEntity creates a UpdateAuthorizationServerUnprocessableEntity with default headers values

func (*UpdateAuthorizationServerUnprocessableEntity) Code

Code gets the status code for the update authorization server unprocessable entity response

func (*UpdateAuthorizationServerUnprocessableEntity) Error

func (*UpdateAuthorizationServerUnprocessableEntity) GetPayload

func (*UpdateAuthorizationServerUnprocessableEntity) IsClientError

IsClientError returns true when this update authorization server unprocessable entity response has a 4xx status code

func (*UpdateAuthorizationServerUnprocessableEntity) IsCode

IsCode returns true when this update authorization server unprocessable entity response a status code equal to that given

func (*UpdateAuthorizationServerUnprocessableEntity) IsRedirect

IsRedirect returns true when this update authorization server unprocessable entity response has a 3xx status code

func (*UpdateAuthorizationServerUnprocessableEntity) IsServerError

IsServerError returns true when this update authorization server unprocessable entity response has a 5xx status code

func (*UpdateAuthorizationServerUnprocessableEntity) IsSuccess

IsSuccess returns true when this update authorization server unprocessable entity response has a 2xx status code

func (*UpdateAuthorizationServerUnprocessableEntity) String

Jump to

Keyboard shortcuts

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