license

package
v0.0.0-...-e2f0fdc Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2023 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	/*
	   GetLicenseDefinition gets pure cloud license definition
	*/
	GetLicenseDefinition(ctx context.Context, params *GetLicenseDefinitionParams) (*GetLicenseDefinitionOK, error)
	/*
	   GetLicenseDefinitions gets all pure cloud license definitions available for the organization
	*/
	GetLicenseDefinitions(ctx context.Context, params *GetLicenseDefinitionsParams) (*GetLicenseDefinitionsOK, error)
	/*
	   GetLicenseToggle gets pure cloud license feature toggle value
	*/
	GetLicenseToggle(ctx context.Context, params *GetLicenseToggleParams) (*GetLicenseToggleOK, error)
	/*
	   GetLicenseUser gets licenses for specified user
	*/
	GetLicenseUser(ctx context.Context, params *GetLicenseUserParams) (*GetLicenseUserOK, error)
	/*
	   GetLicenseUsers gets a page of users and their licenses
	   Retrieve a page of users in an organization along with the licenses they possess.
	*/
	GetLicenseUsers(ctx context.Context, params *GetLicenseUsersParams) (*GetLicenseUsersOK, error)
	/*
	   PostLicenseInfer gets a list of licenses inferred based on a list of role ids
	*/
	PostLicenseInfer(ctx context.Context, params *PostLicenseInferParams) (*PostLicenseInferOK, error)
	/*
	   PostLicenseOrganization updates the organization s license assignments in a batch
	*/
	PostLicenseOrganization(ctx context.Context, params *PostLicenseOrganizationParams) (*PostLicenseOrganizationOK, error)
	/*
	   PostLicenseToggle switches pure cloud license feature toggle value
	*/
	PostLicenseToggle(ctx context.Context, params *PostLicenseToggleParams) (*PostLicenseToggleOK, error)
	/*
	   PostLicenseUsers fetches user licenses in a batch
	*/
	PostLicenseUsers(ctx context.Context, params *PostLicenseUsersParams) (*PostLicenseUsersOK, error)
}

API is the interface of the license client

type Client

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

Client for license API

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry, authInfo runtime.ClientAuthInfoWriter) *Client

New creates a new license API client.

func (*Client) GetLicenseDefinition

func (a *Client) GetLicenseDefinition(ctx context.Context, params *GetLicenseDefinitionParams) (*GetLicenseDefinitionOK, error)

GetLicenseDefinition gets pure cloud license definition

func (*Client) GetLicenseDefinitions

func (a *Client) GetLicenseDefinitions(ctx context.Context, params *GetLicenseDefinitionsParams) (*GetLicenseDefinitionsOK, error)

GetLicenseDefinitions gets all pure cloud license definitions available for the organization

func (*Client) GetLicenseToggle

func (a *Client) GetLicenseToggle(ctx context.Context, params *GetLicenseToggleParams) (*GetLicenseToggleOK, error)

GetLicenseToggle gets pure cloud license feature toggle value

func (*Client) GetLicenseUser

func (a *Client) GetLicenseUser(ctx context.Context, params *GetLicenseUserParams) (*GetLicenseUserOK, error)

GetLicenseUser gets licenses for specified user

func (*Client) GetLicenseUsers

func (a *Client) GetLicenseUsers(ctx context.Context, params *GetLicenseUsersParams) (*GetLicenseUsersOK, error)

GetLicenseUsers gets a page of users and their licenses

Retrieve a page of users in an organization along with the licenses they possess.

func (*Client) PostLicenseInfer

func (a *Client) PostLicenseInfer(ctx context.Context, params *PostLicenseInferParams) (*PostLicenseInferOK, error)

PostLicenseInfer gets a list of licenses inferred based on a list of role ids

func (*Client) PostLicenseOrganization

func (a *Client) PostLicenseOrganization(ctx context.Context, params *PostLicenseOrganizationParams) (*PostLicenseOrganizationOK, error)

PostLicenseOrganization updates the organization s license assignments in a batch

func (*Client) PostLicenseToggle

func (a *Client) PostLicenseToggle(ctx context.Context, params *PostLicenseToggleParams) (*PostLicenseToggleOK, error)

PostLicenseToggle switches pure cloud license feature toggle value

func (*Client) PostLicenseUsers

func (a *Client) PostLicenseUsers(ctx context.Context, params *PostLicenseUsersParams) (*PostLicenseUsersOK, error)

PostLicenseUsers fetches user licenses in a batch

type GetLicenseDefinitionBadRequest

type GetLicenseDefinitionBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetLicenseDefinitionBadRequest

func NewGetLicenseDefinitionBadRequest() *GetLicenseDefinitionBadRequest

NewGetLicenseDefinitionBadRequest creates a GetLicenseDefinitionBadRequest with default headers values

func (*GetLicenseDefinitionBadRequest) Error

func (*GetLicenseDefinitionBadRequest) GetPayload

func (*GetLicenseDefinitionBadRequest) IsClientError

func (o *GetLicenseDefinitionBadRequest) IsClientError() bool

IsClientError returns true when this get license definition bad request response has a 4xx status code

func (*GetLicenseDefinitionBadRequest) IsCode

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

IsCode returns true when this get license definition bad request response a status code equal to that given

func (*GetLicenseDefinitionBadRequest) IsRedirect

func (o *GetLicenseDefinitionBadRequest) IsRedirect() bool

IsRedirect returns true when this get license definition bad request response has a 3xx status code

func (*GetLicenseDefinitionBadRequest) IsServerError

func (o *GetLicenseDefinitionBadRequest) IsServerError() bool

IsServerError returns true when this get license definition bad request response has a 5xx status code

func (*GetLicenseDefinitionBadRequest) IsSuccess

func (o *GetLicenseDefinitionBadRequest) IsSuccess() bool

IsSuccess returns true when this get license definition bad request response has a 2xx status code

func (*GetLicenseDefinitionBadRequest) String

type GetLicenseDefinitionForbidden

type GetLicenseDefinitionForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetLicenseDefinitionForbidden

func NewGetLicenseDefinitionForbidden() *GetLicenseDefinitionForbidden

NewGetLicenseDefinitionForbidden creates a GetLicenseDefinitionForbidden with default headers values

func (*GetLicenseDefinitionForbidden) Error

func (*GetLicenseDefinitionForbidden) GetPayload

func (*GetLicenseDefinitionForbidden) IsClientError

func (o *GetLicenseDefinitionForbidden) IsClientError() bool

IsClientError returns true when this get license definition forbidden response has a 4xx status code

func (*GetLicenseDefinitionForbidden) IsCode

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

IsCode returns true when this get license definition forbidden response a status code equal to that given

func (*GetLicenseDefinitionForbidden) IsRedirect

func (o *GetLicenseDefinitionForbidden) IsRedirect() bool

IsRedirect returns true when this get license definition forbidden response has a 3xx status code

func (*GetLicenseDefinitionForbidden) IsServerError

func (o *GetLicenseDefinitionForbidden) IsServerError() bool

IsServerError returns true when this get license definition forbidden response has a 5xx status code

func (*GetLicenseDefinitionForbidden) IsSuccess

func (o *GetLicenseDefinitionForbidden) IsSuccess() bool

IsSuccess returns true when this get license definition forbidden response has a 2xx status code

func (*GetLicenseDefinitionForbidden) String

type GetLicenseDefinitionGatewayTimeout

type GetLicenseDefinitionGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetLicenseDefinitionGatewayTimeout

func NewGetLicenseDefinitionGatewayTimeout() *GetLicenseDefinitionGatewayTimeout

NewGetLicenseDefinitionGatewayTimeout creates a GetLicenseDefinitionGatewayTimeout with default headers values

func (*GetLicenseDefinitionGatewayTimeout) Error

func (*GetLicenseDefinitionGatewayTimeout) GetPayload

func (*GetLicenseDefinitionGatewayTimeout) IsClientError

func (o *GetLicenseDefinitionGatewayTimeout) IsClientError() bool

IsClientError returns true when this get license definition gateway timeout response has a 4xx status code

func (*GetLicenseDefinitionGatewayTimeout) IsCode

IsCode returns true when this get license definition gateway timeout response a status code equal to that given

func (*GetLicenseDefinitionGatewayTimeout) IsRedirect

func (o *GetLicenseDefinitionGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get license definition gateway timeout response has a 3xx status code

func (*GetLicenseDefinitionGatewayTimeout) IsServerError

func (o *GetLicenseDefinitionGatewayTimeout) IsServerError() bool

IsServerError returns true when this get license definition gateway timeout response has a 5xx status code

func (*GetLicenseDefinitionGatewayTimeout) IsSuccess

IsSuccess returns true when this get license definition gateway timeout response has a 2xx status code

func (*GetLicenseDefinitionGatewayTimeout) String

type GetLicenseDefinitionInternalServerError

type GetLicenseDefinitionInternalServerError struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetLicenseDefinitionInternalServerError

func NewGetLicenseDefinitionInternalServerError() *GetLicenseDefinitionInternalServerError

NewGetLicenseDefinitionInternalServerError creates a GetLicenseDefinitionInternalServerError with default headers values

func (*GetLicenseDefinitionInternalServerError) Error

func (*GetLicenseDefinitionInternalServerError) GetPayload

func (*GetLicenseDefinitionInternalServerError) IsClientError

func (o *GetLicenseDefinitionInternalServerError) IsClientError() bool

IsClientError returns true when this get license definition internal server error response has a 4xx status code

func (*GetLicenseDefinitionInternalServerError) IsCode

IsCode returns true when this get license definition internal server error response a status code equal to that given

func (*GetLicenseDefinitionInternalServerError) IsRedirect

IsRedirect returns true when this get license definition internal server error response has a 3xx status code

func (*GetLicenseDefinitionInternalServerError) IsServerError

func (o *GetLicenseDefinitionInternalServerError) IsServerError() bool

IsServerError returns true when this get license definition internal server error response has a 5xx status code

func (*GetLicenseDefinitionInternalServerError) IsSuccess

IsSuccess returns true when this get license definition internal server error response has a 2xx status code

func (*GetLicenseDefinitionInternalServerError) String

type GetLicenseDefinitionNotFound

type GetLicenseDefinitionNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetLicenseDefinitionNotFound

func NewGetLicenseDefinitionNotFound() *GetLicenseDefinitionNotFound

NewGetLicenseDefinitionNotFound creates a GetLicenseDefinitionNotFound with default headers values

func (*GetLicenseDefinitionNotFound) Error

func (*GetLicenseDefinitionNotFound) GetPayload

func (*GetLicenseDefinitionNotFound) IsClientError

func (o *GetLicenseDefinitionNotFound) IsClientError() bool

IsClientError returns true when this get license definition not found response has a 4xx status code

func (*GetLicenseDefinitionNotFound) IsCode

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

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

func (*GetLicenseDefinitionNotFound) IsRedirect

func (o *GetLicenseDefinitionNotFound) IsRedirect() bool

IsRedirect returns true when this get license definition not found response has a 3xx status code

func (*GetLicenseDefinitionNotFound) IsServerError

func (o *GetLicenseDefinitionNotFound) IsServerError() bool

IsServerError returns true when this get license definition not found response has a 5xx status code

func (*GetLicenseDefinitionNotFound) IsSuccess

func (o *GetLicenseDefinitionNotFound) IsSuccess() bool

IsSuccess returns true when this get license definition not found response has a 2xx status code

func (*GetLicenseDefinitionNotFound) String

type GetLicenseDefinitionOK

type GetLicenseDefinitionOK struct {
	Payload *models.LicenseDefinition
}

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

successful operation

func NewGetLicenseDefinitionOK

func NewGetLicenseDefinitionOK() *GetLicenseDefinitionOK

NewGetLicenseDefinitionOK creates a GetLicenseDefinitionOK with default headers values

func (*GetLicenseDefinitionOK) Error

func (o *GetLicenseDefinitionOK) Error() string

func (*GetLicenseDefinitionOK) GetPayload

func (*GetLicenseDefinitionOK) IsClientError

func (o *GetLicenseDefinitionOK) IsClientError() bool

IsClientError returns true when this get license definition o k response has a 4xx status code

func (*GetLicenseDefinitionOK) IsCode

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

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

func (*GetLicenseDefinitionOK) IsRedirect

func (o *GetLicenseDefinitionOK) IsRedirect() bool

IsRedirect returns true when this get license definition o k response has a 3xx status code

func (*GetLicenseDefinitionOK) IsServerError

func (o *GetLicenseDefinitionOK) IsServerError() bool

IsServerError returns true when this get license definition o k response has a 5xx status code

func (*GetLicenseDefinitionOK) IsSuccess

func (o *GetLicenseDefinitionOK) IsSuccess() bool

IsSuccess returns true when this get license definition o k response has a 2xx status code

func (*GetLicenseDefinitionOK) String

func (o *GetLicenseDefinitionOK) String() string

type GetLicenseDefinitionParams

type GetLicenseDefinitionParams struct {

	/* LicenseID.

	   ID
	*/
	LicenseID string

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

GetLicenseDefinitionParams contains all the parameters to send to the API endpoint

for the get license definition operation.

Typically these are written to a http.Request.

func NewGetLicenseDefinitionParams

func NewGetLicenseDefinitionParams() *GetLicenseDefinitionParams

NewGetLicenseDefinitionParams creates a new GetLicenseDefinitionParams 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 NewGetLicenseDefinitionParamsWithContext

func NewGetLicenseDefinitionParamsWithContext(ctx context.Context) *GetLicenseDefinitionParams

NewGetLicenseDefinitionParamsWithContext creates a new GetLicenseDefinitionParams object with the ability to set a context for a request.

func NewGetLicenseDefinitionParamsWithHTTPClient

func NewGetLicenseDefinitionParamsWithHTTPClient(client *http.Client) *GetLicenseDefinitionParams

NewGetLicenseDefinitionParamsWithHTTPClient creates a new GetLicenseDefinitionParams object with the ability to set a custom HTTPClient for a request.

func NewGetLicenseDefinitionParamsWithTimeout

func NewGetLicenseDefinitionParamsWithTimeout(timeout time.Duration) *GetLicenseDefinitionParams

NewGetLicenseDefinitionParamsWithTimeout creates a new GetLicenseDefinitionParams object with the ability to set a timeout on a request.

func (*GetLicenseDefinitionParams) SetContext

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

SetContext adds the context to the get license definition params

func (*GetLicenseDefinitionParams) SetDefaults

func (o *GetLicenseDefinitionParams) SetDefaults()

SetDefaults hydrates default values in the get license definition params (not the query body).

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

func (*GetLicenseDefinitionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get license definition params

func (*GetLicenseDefinitionParams) SetLicenseID

func (o *GetLicenseDefinitionParams) SetLicenseID(licenseID string)

SetLicenseID adds the licenseId to the get license definition params

func (*GetLicenseDefinitionParams) SetTimeout

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

SetTimeout adds the timeout to the get license definition params

func (*GetLicenseDefinitionParams) WithContext

WithContext adds the context to the get license definition params

func (*GetLicenseDefinitionParams) WithDefaults

WithDefaults hydrates default values in the get license definition params (not the query body).

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

func (*GetLicenseDefinitionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get license definition params

func (*GetLicenseDefinitionParams) WithLicenseID

func (o *GetLicenseDefinitionParams) WithLicenseID(licenseID string) *GetLicenseDefinitionParams

WithLicenseID adds the licenseID to the get license definition params

func (*GetLicenseDefinitionParams) WithTimeout

WithTimeout adds the timeout to the get license definition params

func (*GetLicenseDefinitionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLicenseDefinitionReader

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

GetLicenseDefinitionReader is a Reader for the GetLicenseDefinition structure.

func (*GetLicenseDefinitionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLicenseDefinitionRequestEntityTooLarge

type GetLicenseDefinitionRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetLicenseDefinitionRequestEntityTooLarge

func NewGetLicenseDefinitionRequestEntityTooLarge() *GetLicenseDefinitionRequestEntityTooLarge

NewGetLicenseDefinitionRequestEntityTooLarge creates a GetLicenseDefinitionRequestEntityTooLarge with default headers values

func (*GetLicenseDefinitionRequestEntityTooLarge) Error

func (*GetLicenseDefinitionRequestEntityTooLarge) GetPayload

func (*GetLicenseDefinitionRequestEntityTooLarge) IsClientError

IsClientError returns true when this get license definition request entity too large response has a 4xx status code

func (*GetLicenseDefinitionRequestEntityTooLarge) IsCode

IsCode returns true when this get license definition request entity too large response a status code equal to that given

func (*GetLicenseDefinitionRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get license definition request entity too large response has a 3xx status code

func (*GetLicenseDefinitionRequestEntityTooLarge) IsServerError

IsServerError returns true when this get license definition request entity too large response has a 5xx status code

func (*GetLicenseDefinitionRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get license definition request entity too large response has a 2xx status code

func (*GetLicenseDefinitionRequestEntityTooLarge) String

type GetLicenseDefinitionRequestTimeout

type GetLicenseDefinitionRequestTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetLicenseDefinitionRequestTimeout

func NewGetLicenseDefinitionRequestTimeout() *GetLicenseDefinitionRequestTimeout

NewGetLicenseDefinitionRequestTimeout creates a GetLicenseDefinitionRequestTimeout with default headers values

func (*GetLicenseDefinitionRequestTimeout) Error

func (*GetLicenseDefinitionRequestTimeout) GetPayload

func (*GetLicenseDefinitionRequestTimeout) IsClientError

func (o *GetLicenseDefinitionRequestTimeout) IsClientError() bool

IsClientError returns true when this get license definition request timeout response has a 4xx status code

func (*GetLicenseDefinitionRequestTimeout) IsCode

IsCode returns true when this get license definition request timeout response a status code equal to that given

func (*GetLicenseDefinitionRequestTimeout) IsRedirect

func (o *GetLicenseDefinitionRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get license definition request timeout response has a 3xx status code

func (*GetLicenseDefinitionRequestTimeout) IsServerError

func (o *GetLicenseDefinitionRequestTimeout) IsServerError() bool

IsServerError returns true when this get license definition request timeout response has a 5xx status code

func (*GetLicenseDefinitionRequestTimeout) IsSuccess

IsSuccess returns true when this get license definition request timeout response has a 2xx status code

func (*GetLicenseDefinitionRequestTimeout) String

type GetLicenseDefinitionServiceUnavailable

type GetLicenseDefinitionServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetLicenseDefinitionServiceUnavailable

func NewGetLicenseDefinitionServiceUnavailable() *GetLicenseDefinitionServiceUnavailable

NewGetLicenseDefinitionServiceUnavailable creates a GetLicenseDefinitionServiceUnavailable with default headers values

func (*GetLicenseDefinitionServiceUnavailable) Error

func (*GetLicenseDefinitionServiceUnavailable) GetPayload

func (*GetLicenseDefinitionServiceUnavailable) IsClientError

func (o *GetLicenseDefinitionServiceUnavailable) IsClientError() bool

IsClientError returns true when this get license definition service unavailable response has a 4xx status code

func (*GetLicenseDefinitionServiceUnavailable) IsCode

IsCode returns true when this get license definition service unavailable response a status code equal to that given

func (*GetLicenseDefinitionServiceUnavailable) IsRedirect

IsRedirect returns true when this get license definition service unavailable response has a 3xx status code

func (*GetLicenseDefinitionServiceUnavailable) IsServerError

func (o *GetLicenseDefinitionServiceUnavailable) IsServerError() bool

IsServerError returns true when this get license definition service unavailable response has a 5xx status code

func (*GetLicenseDefinitionServiceUnavailable) IsSuccess

IsSuccess returns true when this get license definition service unavailable response has a 2xx status code

func (*GetLicenseDefinitionServiceUnavailable) String

type GetLicenseDefinitionTooManyRequests

type GetLicenseDefinitionTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetLicenseDefinitionTooManyRequests

func NewGetLicenseDefinitionTooManyRequests() *GetLicenseDefinitionTooManyRequests

NewGetLicenseDefinitionTooManyRequests creates a GetLicenseDefinitionTooManyRequests with default headers values

func (*GetLicenseDefinitionTooManyRequests) Error

func (*GetLicenseDefinitionTooManyRequests) GetPayload

func (*GetLicenseDefinitionTooManyRequests) IsClientError

func (o *GetLicenseDefinitionTooManyRequests) IsClientError() bool

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

func (*GetLicenseDefinitionTooManyRequests) IsCode

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

func (*GetLicenseDefinitionTooManyRequests) IsRedirect

func (o *GetLicenseDefinitionTooManyRequests) IsRedirect() bool

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

func (*GetLicenseDefinitionTooManyRequests) IsServerError

func (o *GetLicenseDefinitionTooManyRequests) IsServerError() bool

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

func (*GetLicenseDefinitionTooManyRequests) IsSuccess

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

func (*GetLicenseDefinitionTooManyRequests) String

type GetLicenseDefinitionUnauthorized

type GetLicenseDefinitionUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetLicenseDefinitionUnauthorized

func NewGetLicenseDefinitionUnauthorized() *GetLicenseDefinitionUnauthorized

NewGetLicenseDefinitionUnauthorized creates a GetLicenseDefinitionUnauthorized with default headers values

func (*GetLicenseDefinitionUnauthorized) Error

func (*GetLicenseDefinitionUnauthorized) GetPayload

func (*GetLicenseDefinitionUnauthorized) IsClientError

func (o *GetLicenseDefinitionUnauthorized) IsClientError() bool

IsClientError returns true when this get license definition unauthorized response has a 4xx status code

func (*GetLicenseDefinitionUnauthorized) IsCode

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

IsCode returns true when this get license definition unauthorized response a status code equal to that given

func (*GetLicenseDefinitionUnauthorized) IsRedirect

func (o *GetLicenseDefinitionUnauthorized) IsRedirect() bool

IsRedirect returns true when this get license definition unauthorized response has a 3xx status code

func (*GetLicenseDefinitionUnauthorized) IsServerError

func (o *GetLicenseDefinitionUnauthorized) IsServerError() bool

IsServerError returns true when this get license definition unauthorized response has a 5xx status code

func (*GetLicenseDefinitionUnauthorized) IsSuccess

func (o *GetLicenseDefinitionUnauthorized) IsSuccess() bool

IsSuccess returns true when this get license definition unauthorized response has a 2xx status code

func (*GetLicenseDefinitionUnauthorized) String

type GetLicenseDefinitionUnsupportedMediaType

type GetLicenseDefinitionUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetLicenseDefinitionUnsupportedMediaType

func NewGetLicenseDefinitionUnsupportedMediaType() *GetLicenseDefinitionUnsupportedMediaType

NewGetLicenseDefinitionUnsupportedMediaType creates a GetLicenseDefinitionUnsupportedMediaType with default headers values

func (*GetLicenseDefinitionUnsupportedMediaType) Error

func (*GetLicenseDefinitionUnsupportedMediaType) GetPayload

func (*GetLicenseDefinitionUnsupportedMediaType) IsClientError

IsClientError returns true when this get license definition unsupported media type response has a 4xx status code

func (*GetLicenseDefinitionUnsupportedMediaType) IsCode

IsCode returns true when this get license definition unsupported media type response a status code equal to that given

func (*GetLicenseDefinitionUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get license definition unsupported media type response has a 3xx status code

func (*GetLicenseDefinitionUnsupportedMediaType) IsServerError

IsServerError returns true when this get license definition unsupported media type response has a 5xx status code

func (*GetLicenseDefinitionUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get license definition unsupported media type response has a 2xx status code

func (*GetLicenseDefinitionUnsupportedMediaType) String

type GetLicenseDefinitionsBadRequest

type GetLicenseDefinitionsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetLicenseDefinitionsBadRequest

func NewGetLicenseDefinitionsBadRequest() *GetLicenseDefinitionsBadRequest

NewGetLicenseDefinitionsBadRequest creates a GetLicenseDefinitionsBadRequest with default headers values

func (*GetLicenseDefinitionsBadRequest) Error

func (*GetLicenseDefinitionsBadRequest) GetPayload

func (*GetLicenseDefinitionsBadRequest) IsClientError

func (o *GetLicenseDefinitionsBadRequest) IsClientError() bool

IsClientError returns true when this get license definitions bad request response has a 4xx status code

func (*GetLicenseDefinitionsBadRequest) IsCode

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

IsCode returns true when this get license definitions bad request response a status code equal to that given

func (*GetLicenseDefinitionsBadRequest) IsRedirect

func (o *GetLicenseDefinitionsBadRequest) IsRedirect() bool

IsRedirect returns true when this get license definitions bad request response has a 3xx status code

func (*GetLicenseDefinitionsBadRequest) IsServerError

func (o *GetLicenseDefinitionsBadRequest) IsServerError() bool

IsServerError returns true when this get license definitions bad request response has a 5xx status code

func (*GetLicenseDefinitionsBadRequest) IsSuccess

func (o *GetLicenseDefinitionsBadRequest) IsSuccess() bool

IsSuccess returns true when this get license definitions bad request response has a 2xx status code

func (*GetLicenseDefinitionsBadRequest) String

type GetLicenseDefinitionsForbidden

type GetLicenseDefinitionsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetLicenseDefinitionsForbidden

func NewGetLicenseDefinitionsForbidden() *GetLicenseDefinitionsForbidden

NewGetLicenseDefinitionsForbidden creates a GetLicenseDefinitionsForbidden with default headers values

func (*GetLicenseDefinitionsForbidden) Error

func (*GetLicenseDefinitionsForbidden) GetPayload

func (*GetLicenseDefinitionsForbidden) IsClientError

func (o *GetLicenseDefinitionsForbidden) IsClientError() bool

IsClientError returns true when this get license definitions forbidden response has a 4xx status code

func (*GetLicenseDefinitionsForbidden) IsCode

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

IsCode returns true when this get license definitions forbidden response a status code equal to that given

func (*GetLicenseDefinitionsForbidden) IsRedirect

func (o *GetLicenseDefinitionsForbidden) IsRedirect() bool

IsRedirect returns true when this get license definitions forbidden response has a 3xx status code

func (*GetLicenseDefinitionsForbidden) IsServerError

func (o *GetLicenseDefinitionsForbidden) IsServerError() bool

IsServerError returns true when this get license definitions forbidden response has a 5xx status code

func (*GetLicenseDefinitionsForbidden) IsSuccess

func (o *GetLicenseDefinitionsForbidden) IsSuccess() bool

IsSuccess returns true when this get license definitions forbidden response has a 2xx status code

func (*GetLicenseDefinitionsForbidden) String

type GetLicenseDefinitionsGatewayTimeout

type GetLicenseDefinitionsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetLicenseDefinitionsGatewayTimeout

func NewGetLicenseDefinitionsGatewayTimeout() *GetLicenseDefinitionsGatewayTimeout

NewGetLicenseDefinitionsGatewayTimeout creates a GetLicenseDefinitionsGatewayTimeout with default headers values

func (*GetLicenseDefinitionsGatewayTimeout) Error

func (*GetLicenseDefinitionsGatewayTimeout) GetPayload

func (*GetLicenseDefinitionsGatewayTimeout) IsClientError

func (o *GetLicenseDefinitionsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get license definitions gateway timeout response has a 4xx status code

func (*GetLicenseDefinitionsGatewayTimeout) IsCode

IsCode returns true when this get license definitions gateway timeout response a status code equal to that given

func (*GetLicenseDefinitionsGatewayTimeout) IsRedirect

func (o *GetLicenseDefinitionsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get license definitions gateway timeout response has a 3xx status code

func (*GetLicenseDefinitionsGatewayTimeout) IsServerError

func (o *GetLicenseDefinitionsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get license definitions gateway timeout response has a 5xx status code

func (*GetLicenseDefinitionsGatewayTimeout) IsSuccess

IsSuccess returns true when this get license definitions gateway timeout response has a 2xx status code

func (*GetLicenseDefinitionsGatewayTimeout) String

type GetLicenseDefinitionsInternalServerError

type GetLicenseDefinitionsInternalServerError struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionsInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetLicenseDefinitionsInternalServerError

func NewGetLicenseDefinitionsInternalServerError() *GetLicenseDefinitionsInternalServerError

NewGetLicenseDefinitionsInternalServerError creates a GetLicenseDefinitionsInternalServerError with default headers values

func (*GetLicenseDefinitionsInternalServerError) Error

func (*GetLicenseDefinitionsInternalServerError) GetPayload

func (*GetLicenseDefinitionsInternalServerError) IsClientError

IsClientError returns true when this get license definitions internal server error response has a 4xx status code

func (*GetLicenseDefinitionsInternalServerError) IsCode

IsCode returns true when this get license definitions internal server error response a status code equal to that given

func (*GetLicenseDefinitionsInternalServerError) IsRedirect

IsRedirect returns true when this get license definitions internal server error response has a 3xx status code

func (*GetLicenseDefinitionsInternalServerError) IsServerError

IsServerError returns true when this get license definitions internal server error response has a 5xx status code

func (*GetLicenseDefinitionsInternalServerError) IsSuccess

IsSuccess returns true when this get license definitions internal server error response has a 2xx status code

func (*GetLicenseDefinitionsInternalServerError) String

type GetLicenseDefinitionsNotFound

type GetLicenseDefinitionsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetLicenseDefinitionsNotFound

func NewGetLicenseDefinitionsNotFound() *GetLicenseDefinitionsNotFound

NewGetLicenseDefinitionsNotFound creates a GetLicenseDefinitionsNotFound with default headers values

func (*GetLicenseDefinitionsNotFound) Error

func (*GetLicenseDefinitionsNotFound) GetPayload

func (*GetLicenseDefinitionsNotFound) IsClientError

func (o *GetLicenseDefinitionsNotFound) IsClientError() bool

IsClientError returns true when this get license definitions not found response has a 4xx status code

func (*GetLicenseDefinitionsNotFound) IsCode

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

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

func (*GetLicenseDefinitionsNotFound) IsRedirect

func (o *GetLicenseDefinitionsNotFound) IsRedirect() bool

IsRedirect returns true when this get license definitions not found response has a 3xx status code

func (*GetLicenseDefinitionsNotFound) IsServerError

func (o *GetLicenseDefinitionsNotFound) IsServerError() bool

IsServerError returns true when this get license definitions not found response has a 5xx status code

func (*GetLicenseDefinitionsNotFound) IsSuccess

func (o *GetLicenseDefinitionsNotFound) IsSuccess() bool

IsSuccess returns true when this get license definitions not found response has a 2xx status code

func (*GetLicenseDefinitionsNotFound) String

type GetLicenseDefinitionsOK

type GetLicenseDefinitionsOK struct {
	Payload []*models.LicenseDefinition
}

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

successful operation

func NewGetLicenseDefinitionsOK

func NewGetLicenseDefinitionsOK() *GetLicenseDefinitionsOK

NewGetLicenseDefinitionsOK creates a GetLicenseDefinitionsOK with default headers values

func (*GetLicenseDefinitionsOK) Error

func (o *GetLicenseDefinitionsOK) Error() string

func (*GetLicenseDefinitionsOK) GetPayload

func (*GetLicenseDefinitionsOK) IsClientError

func (o *GetLicenseDefinitionsOK) IsClientError() bool

IsClientError returns true when this get license definitions o k response has a 4xx status code

func (*GetLicenseDefinitionsOK) IsCode

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

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

func (*GetLicenseDefinitionsOK) IsRedirect

func (o *GetLicenseDefinitionsOK) IsRedirect() bool

IsRedirect returns true when this get license definitions o k response has a 3xx status code

func (*GetLicenseDefinitionsOK) IsServerError

func (o *GetLicenseDefinitionsOK) IsServerError() bool

IsServerError returns true when this get license definitions o k response has a 5xx status code

func (*GetLicenseDefinitionsOK) IsSuccess

func (o *GetLicenseDefinitionsOK) IsSuccess() bool

IsSuccess returns true when this get license definitions o k response has a 2xx status code

func (*GetLicenseDefinitionsOK) String

func (o *GetLicenseDefinitionsOK) String() string

type GetLicenseDefinitionsParams

type GetLicenseDefinitionsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetLicenseDefinitionsParams contains all the parameters to send to the API endpoint

for the get license definitions operation.

Typically these are written to a http.Request.

func NewGetLicenseDefinitionsParams

func NewGetLicenseDefinitionsParams() *GetLicenseDefinitionsParams

NewGetLicenseDefinitionsParams creates a new GetLicenseDefinitionsParams 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 NewGetLicenseDefinitionsParamsWithContext

func NewGetLicenseDefinitionsParamsWithContext(ctx context.Context) *GetLicenseDefinitionsParams

NewGetLicenseDefinitionsParamsWithContext creates a new GetLicenseDefinitionsParams object with the ability to set a context for a request.

func NewGetLicenseDefinitionsParamsWithHTTPClient

func NewGetLicenseDefinitionsParamsWithHTTPClient(client *http.Client) *GetLicenseDefinitionsParams

NewGetLicenseDefinitionsParamsWithHTTPClient creates a new GetLicenseDefinitionsParams object with the ability to set a custom HTTPClient for a request.

func NewGetLicenseDefinitionsParamsWithTimeout

func NewGetLicenseDefinitionsParamsWithTimeout(timeout time.Duration) *GetLicenseDefinitionsParams

NewGetLicenseDefinitionsParamsWithTimeout creates a new GetLicenseDefinitionsParams object with the ability to set a timeout on a request.

func (*GetLicenseDefinitionsParams) SetContext

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

SetContext adds the context to the get license definitions params

func (*GetLicenseDefinitionsParams) SetDefaults

func (o *GetLicenseDefinitionsParams) SetDefaults()

SetDefaults hydrates default values in the get license definitions params (not the query body).

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

func (*GetLicenseDefinitionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get license definitions params

func (*GetLicenseDefinitionsParams) SetTimeout

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

SetTimeout adds the timeout to the get license definitions params

func (*GetLicenseDefinitionsParams) WithContext

WithContext adds the context to the get license definitions params

func (*GetLicenseDefinitionsParams) WithDefaults

WithDefaults hydrates default values in the get license definitions params (not the query body).

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

func (*GetLicenseDefinitionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get license definitions params

func (*GetLicenseDefinitionsParams) WithTimeout

WithTimeout adds the timeout to the get license definitions params

func (*GetLicenseDefinitionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLicenseDefinitionsReader

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

GetLicenseDefinitionsReader is a Reader for the GetLicenseDefinitions structure.

func (*GetLicenseDefinitionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLicenseDefinitionsRequestEntityTooLarge

type GetLicenseDefinitionsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetLicenseDefinitionsRequestEntityTooLarge

func NewGetLicenseDefinitionsRequestEntityTooLarge() *GetLicenseDefinitionsRequestEntityTooLarge

NewGetLicenseDefinitionsRequestEntityTooLarge creates a GetLicenseDefinitionsRequestEntityTooLarge with default headers values

func (*GetLicenseDefinitionsRequestEntityTooLarge) Error

func (*GetLicenseDefinitionsRequestEntityTooLarge) GetPayload

func (*GetLicenseDefinitionsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get license definitions request entity too large response has a 4xx status code

func (*GetLicenseDefinitionsRequestEntityTooLarge) IsCode

IsCode returns true when this get license definitions request entity too large response a status code equal to that given

func (*GetLicenseDefinitionsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get license definitions request entity too large response has a 3xx status code

func (*GetLicenseDefinitionsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get license definitions request entity too large response has a 5xx status code

func (*GetLicenseDefinitionsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get license definitions request entity too large response has a 2xx status code

func (*GetLicenseDefinitionsRequestEntityTooLarge) String

type GetLicenseDefinitionsRequestTimeout

type GetLicenseDefinitionsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetLicenseDefinitionsRequestTimeout

func NewGetLicenseDefinitionsRequestTimeout() *GetLicenseDefinitionsRequestTimeout

NewGetLicenseDefinitionsRequestTimeout creates a GetLicenseDefinitionsRequestTimeout with default headers values

func (*GetLicenseDefinitionsRequestTimeout) Error

func (*GetLicenseDefinitionsRequestTimeout) GetPayload

func (*GetLicenseDefinitionsRequestTimeout) IsClientError

func (o *GetLicenseDefinitionsRequestTimeout) IsClientError() bool

IsClientError returns true when this get license definitions request timeout response has a 4xx status code

func (*GetLicenseDefinitionsRequestTimeout) IsCode

IsCode returns true when this get license definitions request timeout response a status code equal to that given

func (*GetLicenseDefinitionsRequestTimeout) IsRedirect

func (o *GetLicenseDefinitionsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get license definitions request timeout response has a 3xx status code

func (*GetLicenseDefinitionsRequestTimeout) IsServerError

func (o *GetLicenseDefinitionsRequestTimeout) IsServerError() bool

IsServerError returns true when this get license definitions request timeout response has a 5xx status code

func (*GetLicenseDefinitionsRequestTimeout) IsSuccess

IsSuccess returns true when this get license definitions request timeout response has a 2xx status code

func (*GetLicenseDefinitionsRequestTimeout) String

type GetLicenseDefinitionsServiceUnavailable

type GetLicenseDefinitionsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetLicenseDefinitionsServiceUnavailable

func NewGetLicenseDefinitionsServiceUnavailable() *GetLicenseDefinitionsServiceUnavailable

NewGetLicenseDefinitionsServiceUnavailable creates a GetLicenseDefinitionsServiceUnavailable with default headers values

func (*GetLicenseDefinitionsServiceUnavailable) Error

func (*GetLicenseDefinitionsServiceUnavailable) GetPayload

func (*GetLicenseDefinitionsServiceUnavailable) IsClientError

func (o *GetLicenseDefinitionsServiceUnavailable) IsClientError() bool

IsClientError returns true when this get license definitions service unavailable response has a 4xx status code

func (*GetLicenseDefinitionsServiceUnavailable) IsCode

IsCode returns true when this get license definitions service unavailable response a status code equal to that given

func (*GetLicenseDefinitionsServiceUnavailable) IsRedirect

IsRedirect returns true when this get license definitions service unavailable response has a 3xx status code

func (*GetLicenseDefinitionsServiceUnavailable) IsServerError

func (o *GetLicenseDefinitionsServiceUnavailable) IsServerError() bool

IsServerError returns true when this get license definitions service unavailable response has a 5xx status code

func (*GetLicenseDefinitionsServiceUnavailable) IsSuccess

IsSuccess returns true when this get license definitions service unavailable response has a 2xx status code

func (*GetLicenseDefinitionsServiceUnavailable) String

type GetLicenseDefinitionsTooManyRequests

type GetLicenseDefinitionsTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetLicenseDefinitionsTooManyRequests

func NewGetLicenseDefinitionsTooManyRequests() *GetLicenseDefinitionsTooManyRequests

NewGetLicenseDefinitionsTooManyRequests creates a GetLicenseDefinitionsTooManyRequests with default headers values

func (*GetLicenseDefinitionsTooManyRequests) Error

func (*GetLicenseDefinitionsTooManyRequests) GetPayload

func (*GetLicenseDefinitionsTooManyRequests) IsClientError

func (o *GetLicenseDefinitionsTooManyRequests) IsClientError() bool

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

func (*GetLicenseDefinitionsTooManyRequests) IsCode

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

func (*GetLicenseDefinitionsTooManyRequests) IsRedirect

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

func (*GetLicenseDefinitionsTooManyRequests) IsServerError

func (o *GetLicenseDefinitionsTooManyRequests) IsServerError() bool

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

func (*GetLicenseDefinitionsTooManyRequests) IsSuccess

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

func (*GetLicenseDefinitionsTooManyRequests) String

type GetLicenseDefinitionsUnauthorized

type GetLicenseDefinitionsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetLicenseDefinitionsUnauthorized

func NewGetLicenseDefinitionsUnauthorized() *GetLicenseDefinitionsUnauthorized

NewGetLicenseDefinitionsUnauthorized creates a GetLicenseDefinitionsUnauthorized with default headers values

func (*GetLicenseDefinitionsUnauthorized) Error

func (*GetLicenseDefinitionsUnauthorized) GetPayload

func (*GetLicenseDefinitionsUnauthorized) IsClientError

func (o *GetLicenseDefinitionsUnauthorized) IsClientError() bool

IsClientError returns true when this get license definitions unauthorized response has a 4xx status code

func (*GetLicenseDefinitionsUnauthorized) IsCode

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

IsCode returns true when this get license definitions unauthorized response a status code equal to that given

func (*GetLicenseDefinitionsUnauthorized) IsRedirect

func (o *GetLicenseDefinitionsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get license definitions unauthorized response has a 3xx status code

func (*GetLicenseDefinitionsUnauthorized) IsServerError

func (o *GetLicenseDefinitionsUnauthorized) IsServerError() bool

IsServerError returns true when this get license definitions unauthorized response has a 5xx status code

func (*GetLicenseDefinitionsUnauthorized) IsSuccess

func (o *GetLicenseDefinitionsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get license definitions unauthorized response has a 2xx status code

func (*GetLicenseDefinitionsUnauthorized) String

type GetLicenseDefinitionsUnsupportedMediaType

type GetLicenseDefinitionsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetLicenseDefinitionsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetLicenseDefinitionsUnsupportedMediaType

func NewGetLicenseDefinitionsUnsupportedMediaType() *GetLicenseDefinitionsUnsupportedMediaType

NewGetLicenseDefinitionsUnsupportedMediaType creates a GetLicenseDefinitionsUnsupportedMediaType with default headers values

func (*GetLicenseDefinitionsUnsupportedMediaType) Error

func (*GetLicenseDefinitionsUnsupportedMediaType) GetPayload

func (*GetLicenseDefinitionsUnsupportedMediaType) IsClientError

IsClientError returns true when this get license definitions unsupported media type response has a 4xx status code

func (*GetLicenseDefinitionsUnsupportedMediaType) IsCode

IsCode returns true when this get license definitions unsupported media type response a status code equal to that given

func (*GetLicenseDefinitionsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get license definitions unsupported media type response has a 3xx status code

func (*GetLicenseDefinitionsUnsupportedMediaType) IsServerError

IsServerError returns true when this get license definitions unsupported media type response has a 5xx status code

func (*GetLicenseDefinitionsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get license definitions unsupported media type response has a 2xx status code

func (*GetLicenseDefinitionsUnsupportedMediaType) String

type GetLicenseToggleBadRequest

type GetLicenseToggleBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetLicenseToggleBadRequest

func NewGetLicenseToggleBadRequest() *GetLicenseToggleBadRequest

NewGetLicenseToggleBadRequest creates a GetLicenseToggleBadRequest with default headers values

func (*GetLicenseToggleBadRequest) Error

func (*GetLicenseToggleBadRequest) GetPayload

func (o *GetLicenseToggleBadRequest) GetPayload() *models.ErrorBody

func (*GetLicenseToggleBadRequest) IsClientError

func (o *GetLicenseToggleBadRequest) IsClientError() bool

IsClientError returns true when this get license toggle bad request response has a 4xx status code

func (*GetLicenseToggleBadRequest) IsCode

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

IsCode returns true when this get license toggle bad request response a status code equal to that given

func (*GetLicenseToggleBadRequest) IsRedirect

func (o *GetLicenseToggleBadRequest) IsRedirect() bool

IsRedirect returns true when this get license toggle bad request response has a 3xx status code

func (*GetLicenseToggleBadRequest) IsServerError

func (o *GetLicenseToggleBadRequest) IsServerError() bool

IsServerError returns true when this get license toggle bad request response has a 5xx status code

func (*GetLicenseToggleBadRequest) IsSuccess

func (o *GetLicenseToggleBadRequest) IsSuccess() bool

IsSuccess returns true when this get license toggle bad request response has a 2xx status code

func (*GetLicenseToggleBadRequest) String

func (o *GetLicenseToggleBadRequest) String() string

type GetLicenseToggleForbidden

type GetLicenseToggleForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetLicenseToggleForbidden

func NewGetLicenseToggleForbidden() *GetLicenseToggleForbidden

NewGetLicenseToggleForbidden creates a GetLicenseToggleForbidden with default headers values

func (*GetLicenseToggleForbidden) Error

func (o *GetLicenseToggleForbidden) Error() string

func (*GetLicenseToggleForbidden) GetPayload

func (o *GetLicenseToggleForbidden) GetPayload() *models.ErrorBody

func (*GetLicenseToggleForbidden) IsClientError

func (o *GetLicenseToggleForbidden) IsClientError() bool

IsClientError returns true when this get license toggle forbidden response has a 4xx status code

func (*GetLicenseToggleForbidden) IsCode

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

IsCode returns true when this get license toggle forbidden response a status code equal to that given

func (*GetLicenseToggleForbidden) IsRedirect

func (o *GetLicenseToggleForbidden) IsRedirect() bool

IsRedirect returns true when this get license toggle forbidden response has a 3xx status code

func (*GetLicenseToggleForbidden) IsServerError

func (o *GetLicenseToggleForbidden) IsServerError() bool

IsServerError returns true when this get license toggle forbidden response has a 5xx status code

func (*GetLicenseToggleForbidden) IsSuccess

func (o *GetLicenseToggleForbidden) IsSuccess() bool

IsSuccess returns true when this get license toggle forbidden response has a 2xx status code

func (*GetLicenseToggleForbidden) String

func (o *GetLicenseToggleForbidden) String() string

type GetLicenseToggleGatewayTimeout

type GetLicenseToggleGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseToggleGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetLicenseToggleGatewayTimeout

func NewGetLicenseToggleGatewayTimeout() *GetLicenseToggleGatewayTimeout

NewGetLicenseToggleGatewayTimeout creates a GetLicenseToggleGatewayTimeout with default headers values

func (*GetLicenseToggleGatewayTimeout) Error

func (*GetLicenseToggleGatewayTimeout) GetPayload

func (*GetLicenseToggleGatewayTimeout) IsClientError

func (o *GetLicenseToggleGatewayTimeout) IsClientError() bool

IsClientError returns true when this get license toggle gateway timeout response has a 4xx status code

func (*GetLicenseToggleGatewayTimeout) IsCode

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

IsCode returns true when this get license toggle gateway timeout response a status code equal to that given

func (*GetLicenseToggleGatewayTimeout) IsRedirect

func (o *GetLicenseToggleGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get license toggle gateway timeout response has a 3xx status code

func (*GetLicenseToggleGatewayTimeout) IsServerError

func (o *GetLicenseToggleGatewayTimeout) IsServerError() bool

IsServerError returns true when this get license toggle gateway timeout response has a 5xx status code

func (*GetLicenseToggleGatewayTimeout) IsSuccess

func (o *GetLicenseToggleGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get license toggle gateway timeout response has a 2xx status code

func (*GetLicenseToggleGatewayTimeout) String

type GetLicenseToggleInternalServerError

type GetLicenseToggleInternalServerError struct {
	Payload *models.ErrorBody
}

GetLicenseToggleInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetLicenseToggleInternalServerError

func NewGetLicenseToggleInternalServerError() *GetLicenseToggleInternalServerError

NewGetLicenseToggleInternalServerError creates a GetLicenseToggleInternalServerError with default headers values

func (*GetLicenseToggleInternalServerError) Error

func (*GetLicenseToggleInternalServerError) GetPayload

func (*GetLicenseToggleInternalServerError) IsClientError

func (o *GetLicenseToggleInternalServerError) IsClientError() bool

IsClientError returns true when this get license toggle internal server error response has a 4xx status code

func (*GetLicenseToggleInternalServerError) IsCode

IsCode returns true when this get license toggle internal server error response a status code equal to that given

func (*GetLicenseToggleInternalServerError) IsRedirect

func (o *GetLicenseToggleInternalServerError) IsRedirect() bool

IsRedirect returns true when this get license toggle internal server error response has a 3xx status code

func (*GetLicenseToggleInternalServerError) IsServerError

func (o *GetLicenseToggleInternalServerError) IsServerError() bool

IsServerError returns true when this get license toggle internal server error response has a 5xx status code

func (*GetLicenseToggleInternalServerError) IsSuccess

IsSuccess returns true when this get license toggle internal server error response has a 2xx status code

func (*GetLicenseToggleInternalServerError) String

type GetLicenseToggleNotFound

type GetLicenseToggleNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetLicenseToggleNotFound

func NewGetLicenseToggleNotFound() *GetLicenseToggleNotFound

NewGetLicenseToggleNotFound creates a GetLicenseToggleNotFound with default headers values

func (*GetLicenseToggleNotFound) Error

func (o *GetLicenseToggleNotFound) Error() string

func (*GetLicenseToggleNotFound) GetPayload

func (o *GetLicenseToggleNotFound) GetPayload() *models.ErrorBody

func (*GetLicenseToggleNotFound) IsClientError

func (o *GetLicenseToggleNotFound) IsClientError() bool

IsClientError returns true when this get license toggle not found response has a 4xx status code

func (*GetLicenseToggleNotFound) IsCode

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

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

func (*GetLicenseToggleNotFound) IsRedirect

func (o *GetLicenseToggleNotFound) IsRedirect() bool

IsRedirect returns true when this get license toggle not found response has a 3xx status code

func (*GetLicenseToggleNotFound) IsServerError

func (o *GetLicenseToggleNotFound) IsServerError() bool

IsServerError returns true when this get license toggle not found response has a 5xx status code

func (*GetLicenseToggleNotFound) IsSuccess

func (o *GetLicenseToggleNotFound) IsSuccess() bool

IsSuccess returns true when this get license toggle not found response has a 2xx status code

func (*GetLicenseToggleNotFound) String

func (o *GetLicenseToggleNotFound) String() string

type GetLicenseToggleOK

type GetLicenseToggleOK struct {
	Payload *models.LicenseOrgToggle
}

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

successful operation

func NewGetLicenseToggleOK

func NewGetLicenseToggleOK() *GetLicenseToggleOK

NewGetLicenseToggleOK creates a GetLicenseToggleOK with default headers values

func (*GetLicenseToggleOK) Error

func (o *GetLicenseToggleOK) Error() string

func (*GetLicenseToggleOK) GetPayload

func (o *GetLicenseToggleOK) GetPayload() *models.LicenseOrgToggle

func (*GetLicenseToggleOK) IsClientError

func (o *GetLicenseToggleOK) IsClientError() bool

IsClientError returns true when this get license toggle o k response has a 4xx status code

func (*GetLicenseToggleOK) IsCode

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

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

func (*GetLicenseToggleOK) IsRedirect

func (o *GetLicenseToggleOK) IsRedirect() bool

IsRedirect returns true when this get license toggle o k response has a 3xx status code

func (*GetLicenseToggleOK) IsServerError

func (o *GetLicenseToggleOK) IsServerError() bool

IsServerError returns true when this get license toggle o k response has a 5xx status code

func (*GetLicenseToggleOK) IsSuccess

func (o *GetLicenseToggleOK) IsSuccess() bool

IsSuccess returns true when this get license toggle o k response has a 2xx status code

func (*GetLicenseToggleOK) String

func (o *GetLicenseToggleOK) String() string

type GetLicenseToggleParams

type GetLicenseToggleParams struct {

	/* FeatureName.

	   featureName
	*/
	FeatureName string

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

GetLicenseToggleParams contains all the parameters to send to the API endpoint

for the get license toggle operation.

Typically these are written to a http.Request.

func NewGetLicenseToggleParams

func NewGetLicenseToggleParams() *GetLicenseToggleParams

NewGetLicenseToggleParams creates a new GetLicenseToggleParams 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 NewGetLicenseToggleParamsWithContext

func NewGetLicenseToggleParamsWithContext(ctx context.Context) *GetLicenseToggleParams

NewGetLicenseToggleParamsWithContext creates a new GetLicenseToggleParams object with the ability to set a context for a request.

func NewGetLicenseToggleParamsWithHTTPClient

func NewGetLicenseToggleParamsWithHTTPClient(client *http.Client) *GetLicenseToggleParams

NewGetLicenseToggleParamsWithHTTPClient creates a new GetLicenseToggleParams object with the ability to set a custom HTTPClient for a request.

func NewGetLicenseToggleParamsWithTimeout

func NewGetLicenseToggleParamsWithTimeout(timeout time.Duration) *GetLicenseToggleParams

NewGetLicenseToggleParamsWithTimeout creates a new GetLicenseToggleParams object with the ability to set a timeout on a request.

func (*GetLicenseToggleParams) SetContext

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

SetContext adds the context to the get license toggle params

func (*GetLicenseToggleParams) SetDefaults

func (o *GetLicenseToggleParams) SetDefaults()

SetDefaults hydrates default values in the get license toggle params (not the query body).

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

func (*GetLicenseToggleParams) SetFeatureName

func (o *GetLicenseToggleParams) SetFeatureName(featureName string)

SetFeatureName adds the featureName to the get license toggle params

func (*GetLicenseToggleParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get license toggle params

func (*GetLicenseToggleParams) SetTimeout

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

SetTimeout adds the timeout to the get license toggle params

func (*GetLicenseToggleParams) WithContext

WithContext adds the context to the get license toggle params

func (*GetLicenseToggleParams) WithDefaults

WithDefaults hydrates default values in the get license toggle params (not the query body).

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

func (*GetLicenseToggleParams) WithFeatureName

func (o *GetLicenseToggleParams) WithFeatureName(featureName string) *GetLicenseToggleParams

WithFeatureName adds the featureName to the get license toggle params

func (*GetLicenseToggleParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get license toggle params

func (*GetLicenseToggleParams) WithTimeout

WithTimeout adds the timeout to the get license toggle params

func (*GetLicenseToggleParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetLicenseToggleReader

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

GetLicenseToggleReader is a Reader for the GetLicenseToggle structure.

func (*GetLicenseToggleReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLicenseToggleRequestEntityTooLarge

type GetLicenseToggleRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetLicenseToggleRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetLicenseToggleRequestEntityTooLarge

func NewGetLicenseToggleRequestEntityTooLarge() *GetLicenseToggleRequestEntityTooLarge

NewGetLicenseToggleRequestEntityTooLarge creates a GetLicenseToggleRequestEntityTooLarge with default headers values

func (*GetLicenseToggleRequestEntityTooLarge) Error

func (*GetLicenseToggleRequestEntityTooLarge) GetPayload

func (*GetLicenseToggleRequestEntityTooLarge) IsClientError

func (o *GetLicenseToggleRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get license toggle request entity too large response has a 4xx status code

func (*GetLicenseToggleRequestEntityTooLarge) IsCode

IsCode returns true when this get license toggle request entity too large response a status code equal to that given

func (*GetLicenseToggleRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get license toggle request entity too large response has a 3xx status code

func (*GetLicenseToggleRequestEntityTooLarge) IsServerError

func (o *GetLicenseToggleRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get license toggle request entity too large response has a 5xx status code

func (*GetLicenseToggleRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get license toggle request entity too large response has a 2xx status code

func (*GetLicenseToggleRequestEntityTooLarge) String

type GetLicenseToggleRequestTimeout

type GetLicenseToggleRequestTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseToggleRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetLicenseToggleRequestTimeout

func NewGetLicenseToggleRequestTimeout() *GetLicenseToggleRequestTimeout

NewGetLicenseToggleRequestTimeout creates a GetLicenseToggleRequestTimeout with default headers values

func (*GetLicenseToggleRequestTimeout) Error

func (*GetLicenseToggleRequestTimeout) GetPayload

func (*GetLicenseToggleRequestTimeout) IsClientError

func (o *GetLicenseToggleRequestTimeout) IsClientError() bool

IsClientError returns true when this get license toggle request timeout response has a 4xx status code

func (*GetLicenseToggleRequestTimeout) IsCode

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

IsCode returns true when this get license toggle request timeout response a status code equal to that given

func (*GetLicenseToggleRequestTimeout) IsRedirect

func (o *GetLicenseToggleRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get license toggle request timeout response has a 3xx status code

func (*GetLicenseToggleRequestTimeout) IsServerError

func (o *GetLicenseToggleRequestTimeout) IsServerError() bool

IsServerError returns true when this get license toggle request timeout response has a 5xx status code

func (*GetLicenseToggleRequestTimeout) IsSuccess

func (o *GetLicenseToggleRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get license toggle request timeout response has a 2xx status code

func (*GetLicenseToggleRequestTimeout) String

type GetLicenseToggleServiceUnavailable

type GetLicenseToggleServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetLicenseToggleServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetLicenseToggleServiceUnavailable

func NewGetLicenseToggleServiceUnavailable() *GetLicenseToggleServiceUnavailable

NewGetLicenseToggleServiceUnavailable creates a GetLicenseToggleServiceUnavailable with default headers values

func (*GetLicenseToggleServiceUnavailable) Error

func (*GetLicenseToggleServiceUnavailable) GetPayload

func (*GetLicenseToggleServiceUnavailable) IsClientError

func (o *GetLicenseToggleServiceUnavailable) IsClientError() bool

IsClientError returns true when this get license toggle service unavailable response has a 4xx status code

func (*GetLicenseToggleServiceUnavailable) IsCode

IsCode returns true when this get license toggle service unavailable response a status code equal to that given

func (*GetLicenseToggleServiceUnavailable) IsRedirect

func (o *GetLicenseToggleServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get license toggle service unavailable response has a 3xx status code

func (*GetLicenseToggleServiceUnavailable) IsServerError

func (o *GetLicenseToggleServiceUnavailable) IsServerError() bool

IsServerError returns true when this get license toggle service unavailable response has a 5xx status code

func (*GetLicenseToggleServiceUnavailable) IsSuccess

IsSuccess returns true when this get license toggle service unavailable response has a 2xx status code

func (*GetLicenseToggleServiceUnavailable) String

type GetLicenseToggleTooManyRequests

type GetLicenseToggleTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetLicenseToggleTooManyRequests

func NewGetLicenseToggleTooManyRequests() *GetLicenseToggleTooManyRequests

NewGetLicenseToggleTooManyRequests creates a GetLicenseToggleTooManyRequests with default headers values

func (*GetLicenseToggleTooManyRequests) Error

func (*GetLicenseToggleTooManyRequests) GetPayload

func (*GetLicenseToggleTooManyRequests) IsClientError

func (o *GetLicenseToggleTooManyRequests) IsClientError() bool

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

func (*GetLicenseToggleTooManyRequests) IsCode

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

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

func (*GetLicenseToggleTooManyRequests) IsRedirect

func (o *GetLicenseToggleTooManyRequests) IsRedirect() bool

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

func (*GetLicenseToggleTooManyRequests) IsServerError

func (o *GetLicenseToggleTooManyRequests) IsServerError() bool

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

func (*GetLicenseToggleTooManyRequests) IsSuccess

func (o *GetLicenseToggleTooManyRequests) IsSuccess() bool

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

func (*GetLicenseToggleTooManyRequests) String

type GetLicenseToggleUnauthorized

type GetLicenseToggleUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetLicenseToggleUnauthorized

func NewGetLicenseToggleUnauthorized() *GetLicenseToggleUnauthorized

NewGetLicenseToggleUnauthorized creates a GetLicenseToggleUnauthorized with default headers values

func (*GetLicenseToggleUnauthorized) Error

func (*GetLicenseToggleUnauthorized) GetPayload

func (*GetLicenseToggleUnauthorized) IsClientError

func (o *GetLicenseToggleUnauthorized) IsClientError() bool

IsClientError returns true when this get license toggle unauthorized response has a 4xx status code

func (*GetLicenseToggleUnauthorized) IsCode

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

IsCode returns true when this get license toggle unauthorized response a status code equal to that given

func (*GetLicenseToggleUnauthorized) IsRedirect

func (o *GetLicenseToggleUnauthorized) IsRedirect() bool

IsRedirect returns true when this get license toggle unauthorized response has a 3xx status code

func (*GetLicenseToggleUnauthorized) IsServerError

func (o *GetLicenseToggleUnauthorized) IsServerError() bool

IsServerError returns true when this get license toggle unauthorized response has a 5xx status code

func (*GetLicenseToggleUnauthorized) IsSuccess

func (o *GetLicenseToggleUnauthorized) IsSuccess() bool

IsSuccess returns true when this get license toggle unauthorized response has a 2xx status code

func (*GetLicenseToggleUnauthorized) String

type GetLicenseToggleUnsupportedMediaType

type GetLicenseToggleUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetLicenseToggleUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetLicenseToggleUnsupportedMediaType

func NewGetLicenseToggleUnsupportedMediaType() *GetLicenseToggleUnsupportedMediaType

NewGetLicenseToggleUnsupportedMediaType creates a GetLicenseToggleUnsupportedMediaType with default headers values

func (*GetLicenseToggleUnsupportedMediaType) Error

func (*GetLicenseToggleUnsupportedMediaType) GetPayload

func (*GetLicenseToggleUnsupportedMediaType) IsClientError

func (o *GetLicenseToggleUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get license toggle unsupported media type response has a 4xx status code

func (*GetLicenseToggleUnsupportedMediaType) IsCode

IsCode returns true when this get license toggle unsupported media type response a status code equal to that given

func (*GetLicenseToggleUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get license toggle unsupported media type response has a 3xx status code

func (*GetLicenseToggleUnsupportedMediaType) IsServerError

func (o *GetLicenseToggleUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get license toggle unsupported media type response has a 5xx status code

func (*GetLicenseToggleUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get license toggle unsupported media type response has a 2xx status code

func (*GetLicenseToggleUnsupportedMediaType) String

type GetLicenseUserBadRequest

type GetLicenseUserBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetLicenseUserBadRequest

func NewGetLicenseUserBadRequest() *GetLicenseUserBadRequest

NewGetLicenseUserBadRequest creates a GetLicenseUserBadRequest with default headers values

func (*GetLicenseUserBadRequest) Error

func (o *GetLicenseUserBadRequest) Error() string

func (*GetLicenseUserBadRequest) GetPayload

func (o *GetLicenseUserBadRequest) GetPayload() *models.ErrorBody

func (*GetLicenseUserBadRequest) IsClientError

func (o *GetLicenseUserBadRequest) IsClientError() bool

IsClientError returns true when this get license user bad request response has a 4xx status code

func (*GetLicenseUserBadRequest) IsCode

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

IsCode returns true when this get license user bad request response a status code equal to that given

func (*GetLicenseUserBadRequest) IsRedirect

func (o *GetLicenseUserBadRequest) IsRedirect() bool

IsRedirect returns true when this get license user bad request response has a 3xx status code

func (*GetLicenseUserBadRequest) IsServerError

func (o *GetLicenseUserBadRequest) IsServerError() bool

IsServerError returns true when this get license user bad request response has a 5xx status code

func (*GetLicenseUserBadRequest) IsSuccess

func (o *GetLicenseUserBadRequest) IsSuccess() bool

IsSuccess returns true when this get license user bad request response has a 2xx status code

func (*GetLicenseUserBadRequest) String

func (o *GetLicenseUserBadRequest) String() string

type GetLicenseUserForbidden

type GetLicenseUserForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetLicenseUserForbidden

func NewGetLicenseUserForbidden() *GetLicenseUserForbidden

NewGetLicenseUserForbidden creates a GetLicenseUserForbidden with default headers values

func (*GetLicenseUserForbidden) Error

func (o *GetLicenseUserForbidden) Error() string

func (*GetLicenseUserForbidden) GetPayload

func (o *GetLicenseUserForbidden) GetPayload() *models.ErrorBody

func (*GetLicenseUserForbidden) IsClientError

func (o *GetLicenseUserForbidden) IsClientError() bool

IsClientError returns true when this get license user forbidden response has a 4xx status code

func (*GetLicenseUserForbidden) IsCode

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

IsCode returns true when this get license user forbidden response a status code equal to that given

func (*GetLicenseUserForbidden) IsRedirect

func (o *GetLicenseUserForbidden) IsRedirect() bool

IsRedirect returns true when this get license user forbidden response has a 3xx status code

func (*GetLicenseUserForbidden) IsServerError

func (o *GetLicenseUserForbidden) IsServerError() bool

IsServerError returns true when this get license user forbidden response has a 5xx status code

func (*GetLicenseUserForbidden) IsSuccess

func (o *GetLicenseUserForbidden) IsSuccess() bool

IsSuccess returns true when this get license user forbidden response has a 2xx status code

func (*GetLicenseUserForbidden) String

func (o *GetLicenseUserForbidden) String() string

type GetLicenseUserGatewayTimeout

type GetLicenseUserGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseUserGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetLicenseUserGatewayTimeout

func NewGetLicenseUserGatewayTimeout() *GetLicenseUserGatewayTimeout

NewGetLicenseUserGatewayTimeout creates a GetLicenseUserGatewayTimeout with default headers values

func (*GetLicenseUserGatewayTimeout) Error

func (*GetLicenseUserGatewayTimeout) GetPayload

func (*GetLicenseUserGatewayTimeout) IsClientError

func (o *GetLicenseUserGatewayTimeout) IsClientError() bool

IsClientError returns true when this get license user gateway timeout response has a 4xx status code

func (*GetLicenseUserGatewayTimeout) IsCode

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

IsCode returns true when this get license user gateway timeout response a status code equal to that given

func (*GetLicenseUserGatewayTimeout) IsRedirect

func (o *GetLicenseUserGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get license user gateway timeout response has a 3xx status code

func (*GetLicenseUserGatewayTimeout) IsServerError

func (o *GetLicenseUserGatewayTimeout) IsServerError() bool

IsServerError returns true when this get license user gateway timeout response has a 5xx status code

func (*GetLicenseUserGatewayTimeout) IsSuccess

func (o *GetLicenseUserGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get license user gateway timeout response has a 2xx status code

func (*GetLicenseUserGatewayTimeout) String

type GetLicenseUserInternalServerError

type GetLicenseUserInternalServerError struct {
	Payload *models.ErrorBody
}

GetLicenseUserInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetLicenseUserInternalServerError

func NewGetLicenseUserInternalServerError() *GetLicenseUserInternalServerError

NewGetLicenseUserInternalServerError creates a GetLicenseUserInternalServerError with default headers values

func (*GetLicenseUserInternalServerError) Error

func (*GetLicenseUserInternalServerError) GetPayload

func (*GetLicenseUserInternalServerError) IsClientError

func (o *GetLicenseUserInternalServerError) IsClientError() bool

IsClientError returns true when this get license user internal server error response has a 4xx status code

func (*GetLicenseUserInternalServerError) IsCode

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

IsCode returns true when this get license user internal server error response a status code equal to that given

func (*GetLicenseUserInternalServerError) IsRedirect

func (o *GetLicenseUserInternalServerError) IsRedirect() bool

IsRedirect returns true when this get license user internal server error response has a 3xx status code

func (*GetLicenseUserInternalServerError) IsServerError

func (o *GetLicenseUserInternalServerError) IsServerError() bool

IsServerError returns true when this get license user internal server error response has a 5xx status code

func (*GetLicenseUserInternalServerError) IsSuccess

func (o *GetLicenseUserInternalServerError) IsSuccess() bool

IsSuccess returns true when this get license user internal server error response has a 2xx status code

func (*GetLicenseUserInternalServerError) String

type GetLicenseUserNotFound

type GetLicenseUserNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetLicenseUserNotFound

func NewGetLicenseUserNotFound() *GetLicenseUserNotFound

NewGetLicenseUserNotFound creates a GetLicenseUserNotFound with default headers values

func (*GetLicenseUserNotFound) Error

func (o *GetLicenseUserNotFound) Error() string

func (*GetLicenseUserNotFound) GetPayload

func (o *GetLicenseUserNotFound) GetPayload() *models.ErrorBody

func (*GetLicenseUserNotFound) IsClientError

func (o *GetLicenseUserNotFound) IsClientError() bool

IsClientError returns true when this get license user not found response has a 4xx status code

func (*GetLicenseUserNotFound) IsCode

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

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

func (*GetLicenseUserNotFound) IsRedirect

func (o *GetLicenseUserNotFound) IsRedirect() bool

IsRedirect returns true when this get license user not found response has a 3xx status code

func (*GetLicenseUserNotFound) IsServerError

func (o *GetLicenseUserNotFound) IsServerError() bool

IsServerError returns true when this get license user not found response has a 5xx status code

func (*GetLicenseUserNotFound) IsSuccess

func (o *GetLicenseUserNotFound) IsSuccess() bool

IsSuccess returns true when this get license user not found response has a 2xx status code

func (*GetLicenseUserNotFound) String

func (o *GetLicenseUserNotFound) String() string

type GetLicenseUserOK

type GetLicenseUserOK struct {
	Payload *models.LicenseUser
}

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

successful operation

func NewGetLicenseUserOK

func NewGetLicenseUserOK() *GetLicenseUserOK

NewGetLicenseUserOK creates a GetLicenseUserOK with default headers values

func (*GetLicenseUserOK) Error

func (o *GetLicenseUserOK) Error() string

func (*GetLicenseUserOK) GetPayload

func (o *GetLicenseUserOK) GetPayload() *models.LicenseUser

func (*GetLicenseUserOK) IsClientError

func (o *GetLicenseUserOK) IsClientError() bool

IsClientError returns true when this get license user o k response has a 4xx status code

func (*GetLicenseUserOK) IsCode

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

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

func (*GetLicenseUserOK) IsRedirect

func (o *GetLicenseUserOK) IsRedirect() bool

IsRedirect returns true when this get license user o k response has a 3xx status code

func (*GetLicenseUserOK) IsServerError

func (o *GetLicenseUserOK) IsServerError() bool

IsServerError returns true when this get license user o k response has a 5xx status code

func (*GetLicenseUserOK) IsSuccess

func (o *GetLicenseUserOK) IsSuccess() bool

IsSuccess returns true when this get license user o k response has a 2xx status code

func (*GetLicenseUserOK) String

func (o *GetLicenseUserOK) String() string

type GetLicenseUserParams

type GetLicenseUserParams struct {

	/* UserID.

	   ID
	*/
	UserID string

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

GetLicenseUserParams contains all the parameters to send to the API endpoint

for the get license user operation.

Typically these are written to a http.Request.

func NewGetLicenseUserParams

func NewGetLicenseUserParams() *GetLicenseUserParams

NewGetLicenseUserParams creates a new GetLicenseUserParams 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 NewGetLicenseUserParamsWithContext

func NewGetLicenseUserParamsWithContext(ctx context.Context) *GetLicenseUserParams

NewGetLicenseUserParamsWithContext creates a new GetLicenseUserParams object with the ability to set a context for a request.

func NewGetLicenseUserParamsWithHTTPClient

func NewGetLicenseUserParamsWithHTTPClient(client *http.Client) *GetLicenseUserParams

NewGetLicenseUserParamsWithHTTPClient creates a new GetLicenseUserParams object with the ability to set a custom HTTPClient for a request.

func NewGetLicenseUserParamsWithTimeout

func NewGetLicenseUserParamsWithTimeout(timeout time.Duration) *GetLicenseUserParams

NewGetLicenseUserParamsWithTimeout creates a new GetLicenseUserParams object with the ability to set a timeout on a request.

func (*GetLicenseUserParams) SetContext

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

SetContext adds the context to the get license user params

func (*GetLicenseUserParams) SetDefaults

func (o *GetLicenseUserParams) SetDefaults()

SetDefaults hydrates default values in the get license user params (not the query body).

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

func (*GetLicenseUserParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get license user params

func (*GetLicenseUserParams) SetTimeout

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

SetTimeout adds the timeout to the get license user params

func (*GetLicenseUserParams) SetUserID

func (o *GetLicenseUserParams) SetUserID(userID string)

SetUserID adds the userId to the get license user params

func (*GetLicenseUserParams) WithContext

WithContext adds the context to the get license user params

func (*GetLicenseUserParams) WithDefaults

func (o *GetLicenseUserParams) WithDefaults() *GetLicenseUserParams

WithDefaults hydrates default values in the get license user params (not the query body).

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

func (*GetLicenseUserParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get license user params

func (*GetLicenseUserParams) WithTimeout

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

WithTimeout adds the timeout to the get license user params

func (*GetLicenseUserParams) WithUserID

func (o *GetLicenseUserParams) WithUserID(userID string) *GetLicenseUserParams

WithUserID adds the userID to the get license user params

func (*GetLicenseUserParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetLicenseUserReader

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

GetLicenseUserReader is a Reader for the GetLicenseUser structure.

func (*GetLicenseUserReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLicenseUserRequestEntityTooLarge

type GetLicenseUserRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetLicenseUserRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetLicenseUserRequestEntityTooLarge

func NewGetLicenseUserRequestEntityTooLarge() *GetLicenseUserRequestEntityTooLarge

NewGetLicenseUserRequestEntityTooLarge creates a GetLicenseUserRequestEntityTooLarge with default headers values

func (*GetLicenseUserRequestEntityTooLarge) Error

func (*GetLicenseUserRequestEntityTooLarge) GetPayload

func (*GetLicenseUserRequestEntityTooLarge) IsClientError

func (o *GetLicenseUserRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get license user request entity too large response has a 4xx status code

func (*GetLicenseUserRequestEntityTooLarge) IsCode

IsCode returns true when this get license user request entity too large response a status code equal to that given

func (*GetLicenseUserRequestEntityTooLarge) IsRedirect

func (o *GetLicenseUserRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get license user request entity too large response has a 3xx status code

func (*GetLicenseUserRequestEntityTooLarge) IsServerError

func (o *GetLicenseUserRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get license user request entity too large response has a 5xx status code

func (*GetLicenseUserRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get license user request entity too large response has a 2xx status code

func (*GetLicenseUserRequestEntityTooLarge) String

type GetLicenseUserRequestTimeout

type GetLicenseUserRequestTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseUserRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetLicenseUserRequestTimeout

func NewGetLicenseUserRequestTimeout() *GetLicenseUserRequestTimeout

NewGetLicenseUserRequestTimeout creates a GetLicenseUserRequestTimeout with default headers values

func (*GetLicenseUserRequestTimeout) Error

func (*GetLicenseUserRequestTimeout) GetPayload

func (*GetLicenseUserRequestTimeout) IsClientError

func (o *GetLicenseUserRequestTimeout) IsClientError() bool

IsClientError returns true when this get license user request timeout response has a 4xx status code

func (*GetLicenseUserRequestTimeout) IsCode

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

IsCode returns true when this get license user request timeout response a status code equal to that given

func (*GetLicenseUserRequestTimeout) IsRedirect

func (o *GetLicenseUserRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get license user request timeout response has a 3xx status code

func (*GetLicenseUserRequestTimeout) IsServerError

func (o *GetLicenseUserRequestTimeout) IsServerError() bool

IsServerError returns true when this get license user request timeout response has a 5xx status code

func (*GetLicenseUserRequestTimeout) IsSuccess

func (o *GetLicenseUserRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get license user request timeout response has a 2xx status code

func (*GetLicenseUserRequestTimeout) String

type GetLicenseUserServiceUnavailable

type GetLicenseUserServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetLicenseUserServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetLicenseUserServiceUnavailable

func NewGetLicenseUserServiceUnavailable() *GetLicenseUserServiceUnavailable

NewGetLicenseUserServiceUnavailable creates a GetLicenseUserServiceUnavailable with default headers values

func (*GetLicenseUserServiceUnavailable) Error

func (*GetLicenseUserServiceUnavailable) GetPayload

func (*GetLicenseUserServiceUnavailable) IsClientError

func (o *GetLicenseUserServiceUnavailable) IsClientError() bool

IsClientError returns true when this get license user service unavailable response has a 4xx status code

func (*GetLicenseUserServiceUnavailable) IsCode

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

IsCode returns true when this get license user service unavailable response a status code equal to that given

func (*GetLicenseUserServiceUnavailable) IsRedirect

func (o *GetLicenseUserServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get license user service unavailable response has a 3xx status code

func (*GetLicenseUserServiceUnavailable) IsServerError

func (o *GetLicenseUserServiceUnavailable) IsServerError() bool

IsServerError returns true when this get license user service unavailable response has a 5xx status code

func (*GetLicenseUserServiceUnavailable) IsSuccess

func (o *GetLicenseUserServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get license user service unavailable response has a 2xx status code

func (*GetLicenseUserServiceUnavailable) String

type GetLicenseUserTooManyRequests

type GetLicenseUserTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetLicenseUserTooManyRequests

func NewGetLicenseUserTooManyRequests() *GetLicenseUserTooManyRequests

NewGetLicenseUserTooManyRequests creates a GetLicenseUserTooManyRequests with default headers values

func (*GetLicenseUserTooManyRequests) Error

func (*GetLicenseUserTooManyRequests) GetPayload

func (*GetLicenseUserTooManyRequests) IsClientError

func (o *GetLicenseUserTooManyRequests) IsClientError() bool

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

func (*GetLicenseUserTooManyRequests) IsCode

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

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

func (*GetLicenseUserTooManyRequests) IsRedirect

func (o *GetLicenseUserTooManyRequests) IsRedirect() bool

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

func (*GetLicenseUserTooManyRequests) IsServerError

func (o *GetLicenseUserTooManyRequests) IsServerError() bool

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

func (*GetLicenseUserTooManyRequests) IsSuccess

func (o *GetLicenseUserTooManyRequests) IsSuccess() bool

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

func (*GetLicenseUserTooManyRequests) String

type GetLicenseUserUnauthorized

type GetLicenseUserUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetLicenseUserUnauthorized

func NewGetLicenseUserUnauthorized() *GetLicenseUserUnauthorized

NewGetLicenseUserUnauthorized creates a GetLicenseUserUnauthorized with default headers values

func (*GetLicenseUserUnauthorized) Error

func (*GetLicenseUserUnauthorized) GetPayload

func (o *GetLicenseUserUnauthorized) GetPayload() *models.ErrorBody

func (*GetLicenseUserUnauthorized) IsClientError

func (o *GetLicenseUserUnauthorized) IsClientError() bool

IsClientError returns true when this get license user unauthorized response has a 4xx status code

func (*GetLicenseUserUnauthorized) IsCode

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

IsCode returns true when this get license user unauthorized response a status code equal to that given

func (*GetLicenseUserUnauthorized) IsRedirect

func (o *GetLicenseUserUnauthorized) IsRedirect() bool

IsRedirect returns true when this get license user unauthorized response has a 3xx status code

func (*GetLicenseUserUnauthorized) IsServerError

func (o *GetLicenseUserUnauthorized) IsServerError() bool

IsServerError returns true when this get license user unauthorized response has a 5xx status code

func (*GetLicenseUserUnauthorized) IsSuccess

func (o *GetLicenseUserUnauthorized) IsSuccess() bool

IsSuccess returns true when this get license user unauthorized response has a 2xx status code

func (*GetLicenseUserUnauthorized) String

func (o *GetLicenseUserUnauthorized) String() string

type GetLicenseUserUnsupportedMediaType

type GetLicenseUserUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetLicenseUserUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetLicenseUserUnsupportedMediaType

func NewGetLicenseUserUnsupportedMediaType() *GetLicenseUserUnsupportedMediaType

NewGetLicenseUserUnsupportedMediaType creates a GetLicenseUserUnsupportedMediaType with default headers values

func (*GetLicenseUserUnsupportedMediaType) Error

func (*GetLicenseUserUnsupportedMediaType) GetPayload

func (*GetLicenseUserUnsupportedMediaType) IsClientError

func (o *GetLicenseUserUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get license user unsupported media type response has a 4xx status code

func (*GetLicenseUserUnsupportedMediaType) IsCode

IsCode returns true when this get license user unsupported media type response a status code equal to that given

func (*GetLicenseUserUnsupportedMediaType) IsRedirect

func (o *GetLicenseUserUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get license user unsupported media type response has a 3xx status code

func (*GetLicenseUserUnsupportedMediaType) IsServerError

func (o *GetLicenseUserUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get license user unsupported media type response has a 5xx status code

func (*GetLicenseUserUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get license user unsupported media type response has a 2xx status code

func (*GetLicenseUserUnsupportedMediaType) String

type GetLicenseUsersBadRequest

type GetLicenseUsersBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetLicenseUsersBadRequest

func NewGetLicenseUsersBadRequest() *GetLicenseUsersBadRequest

NewGetLicenseUsersBadRequest creates a GetLicenseUsersBadRequest with default headers values

func (*GetLicenseUsersBadRequest) Error

func (o *GetLicenseUsersBadRequest) Error() string

func (*GetLicenseUsersBadRequest) GetPayload

func (o *GetLicenseUsersBadRequest) GetPayload() *models.ErrorBody

func (*GetLicenseUsersBadRequest) IsClientError

func (o *GetLicenseUsersBadRequest) IsClientError() bool

IsClientError returns true when this get license users bad request response has a 4xx status code

func (*GetLicenseUsersBadRequest) IsCode

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

IsCode returns true when this get license users bad request response a status code equal to that given

func (*GetLicenseUsersBadRequest) IsRedirect

func (o *GetLicenseUsersBadRequest) IsRedirect() bool

IsRedirect returns true when this get license users bad request response has a 3xx status code

func (*GetLicenseUsersBadRequest) IsServerError

func (o *GetLicenseUsersBadRequest) IsServerError() bool

IsServerError returns true when this get license users bad request response has a 5xx status code

func (*GetLicenseUsersBadRequest) IsSuccess

func (o *GetLicenseUsersBadRequest) IsSuccess() bool

IsSuccess returns true when this get license users bad request response has a 2xx status code

func (*GetLicenseUsersBadRequest) String

func (o *GetLicenseUsersBadRequest) String() string

type GetLicenseUsersForbidden

type GetLicenseUsersForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetLicenseUsersForbidden

func NewGetLicenseUsersForbidden() *GetLicenseUsersForbidden

NewGetLicenseUsersForbidden creates a GetLicenseUsersForbidden with default headers values

func (*GetLicenseUsersForbidden) Error

func (o *GetLicenseUsersForbidden) Error() string

func (*GetLicenseUsersForbidden) GetPayload

func (o *GetLicenseUsersForbidden) GetPayload() *models.ErrorBody

func (*GetLicenseUsersForbidden) IsClientError

func (o *GetLicenseUsersForbidden) IsClientError() bool

IsClientError returns true when this get license users forbidden response has a 4xx status code

func (*GetLicenseUsersForbidden) IsCode

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

IsCode returns true when this get license users forbidden response a status code equal to that given

func (*GetLicenseUsersForbidden) IsRedirect

func (o *GetLicenseUsersForbidden) IsRedirect() bool

IsRedirect returns true when this get license users forbidden response has a 3xx status code

func (*GetLicenseUsersForbidden) IsServerError

func (o *GetLicenseUsersForbidden) IsServerError() bool

IsServerError returns true when this get license users forbidden response has a 5xx status code

func (*GetLicenseUsersForbidden) IsSuccess

func (o *GetLicenseUsersForbidden) IsSuccess() bool

IsSuccess returns true when this get license users forbidden response has a 2xx status code

func (*GetLicenseUsersForbidden) String

func (o *GetLicenseUsersForbidden) String() string

type GetLicenseUsersGatewayTimeout

type GetLicenseUsersGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseUsersGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetLicenseUsersGatewayTimeout

func NewGetLicenseUsersGatewayTimeout() *GetLicenseUsersGatewayTimeout

NewGetLicenseUsersGatewayTimeout creates a GetLicenseUsersGatewayTimeout with default headers values

func (*GetLicenseUsersGatewayTimeout) Error

func (*GetLicenseUsersGatewayTimeout) GetPayload

func (*GetLicenseUsersGatewayTimeout) IsClientError

func (o *GetLicenseUsersGatewayTimeout) IsClientError() bool

IsClientError returns true when this get license users gateway timeout response has a 4xx status code

func (*GetLicenseUsersGatewayTimeout) IsCode

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

IsCode returns true when this get license users gateway timeout response a status code equal to that given

func (*GetLicenseUsersGatewayTimeout) IsRedirect

func (o *GetLicenseUsersGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get license users gateway timeout response has a 3xx status code

func (*GetLicenseUsersGatewayTimeout) IsServerError

func (o *GetLicenseUsersGatewayTimeout) IsServerError() bool

IsServerError returns true when this get license users gateway timeout response has a 5xx status code

func (*GetLicenseUsersGatewayTimeout) IsSuccess

func (o *GetLicenseUsersGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get license users gateway timeout response has a 2xx status code

func (*GetLicenseUsersGatewayTimeout) String

type GetLicenseUsersInternalServerError

type GetLicenseUsersInternalServerError struct {
	Payload *models.ErrorBody
}

GetLicenseUsersInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetLicenseUsersInternalServerError

func NewGetLicenseUsersInternalServerError() *GetLicenseUsersInternalServerError

NewGetLicenseUsersInternalServerError creates a GetLicenseUsersInternalServerError with default headers values

func (*GetLicenseUsersInternalServerError) Error

func (*GetLicenseUsersInternalServerError) GetPayload

func (*GetLicenseUsersInternalServerError) IsClientError

func (o *GetLicenseUsersInternalServerError) IsClientError() bool

IsClientError returns true when this get license users internal server error response has a 4xx status code

func (*GetLicenseUsersInternalServerError) IsCode

IsCode returns true when this get license users internal server error response a status code equal to that given

func (*GetLicenseUsersInternalServerError) IsRedirect

func (o *GetLicenseUsersInternalServerError) IsRedirect() bool

IsRedirect returns true when this get license users internal server error response has a 3xx status code

func (*GetLicenseUsersInternalServerError) IsServerError

func (o *GetLicenseUsersInternalServerError) IsServerError() bool

IsServerError returns true when this get license users internal server error response has a 5xx status code

func (*GetLicenseUsersInternalServerError) IsSuccess

IsSuccess returns true when this get license users internal server error response has a 2xx status code

func (*GetLicenseUsersInternalServerError) String

type GetLicenseUsersNotFound

type GetLicenseUsersNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetLicenseUsersNotFound

func NewGetLicenseUsersNotFound() *GetLicenseUsersNotFound

NewGetLicenseUsersNotFound creates a GetLicenseUsersNotFound with default headers values

func (*GetLicenseUsersNotFound) Error

func (o *GetLicenseUsersNotFound) Error() string

func (*GetLicenseUsersNotFound) GetPayload

func (o *GetLicenseUsersNotFound) GetPayload() *models.ErrorBody

func (*GetLicenseUsersNotFound) IsClientError

func (o *GetLicenseUsersNotFound) IsClientError() bool

IsClientError returns true when this get license users not found response has a 4xx status code

func (*GetLicenseUsersNotFound) IsCode

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

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

func (*GetLicenseUsersNotFound) IsRedirect

func (o *GetLicenseUsersNotFound) IsRedirect() bool

IsRedirect returns true when this get license users not found response has a 3xx status code

func (*GetLicenseUsersNotFound) IsServerError

func (o *GetLicenseUsersNotFound) IsServerError() bool

IsServerError returns true when this get license users not found response has a 5xx status code

func (*GetLicenseUsersNotFound) IsSuccess

func (o *GetLicenseUsersNotFound) IsSuccess() bool

IsSuccess returns true when this get license users not found response has a 2xx status code

func (*GetLicenseUsersNotFound) String

func (o *GetLicenseUsersNotFound) String() string

type GetLicenseUsersOK

type GetLicenseUsersOK struct {
	Payload *models.UserLicensesEntityListing
}

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

successful operation

func NewGetLicenseUsersOK

func NewGetLicenseUsersOK() *GetLicenseUsersOK

NewGetLicenseUsersOK creates a GetLicenseUsersOK with default headers values

func (*GetLicenseUsersOK) Error

func (o *GetLicenseUsersOK) Error() string

func (*GetLicenseUsersOK) GetPayload

func (*GetLicenseUsersOK) IsClientError

func (o *GetLicenseUsersOK) IsClientError() bool

IsClientError returns true when this get license users o k response has a 4xx status code

func (*GetLicenseUsersOK) IsCode

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

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

func (*GetLicenseUsersOK) IsRedirect

func (o *GetLicenseUsersOK) IsRedirect() bool

IsRedirect returns true when this get license users o k response has a 3xx status code

func (*GetLicenseUsersOK) IsServerError

func (o *GetLicenseUsersOK) IsServerError() bool

IsServerError returns true when this get license users o k response has a 5xx status code

func (*GetLicenseUsersOK) IsSuccess

func (o *GetLicenseUsersOK) IsSuccess() bool

IsSuccess returns true when this get license users o k response has a 2xx status code

func (*GetLicenseUsersOK) String

func (o *GetLicenseUsersOK) String() string

type GetLicenseUsersParams

type GetLicenseUsersParams struct {

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

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

GetLicenseUsersParams contains all the parameters to send to the API endpoint

for the get license users operation.

Typically these are written to a http.Request.

func NewGetLicenseUsersParams

func NewGetLicenseUsersParams() *GetLicenseUsersParams

NewGetLicenseUsersParams creates a new GetLicenseUsersParams 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 NewGetLicenseUsersParamsWithContext

func NewGetLicenseUsersParamsWithContext(ctx context.Context) *GetLicenseUsersParams

NewGetLicenseUsersParamsWithContext creates a new GetLicenseUsersParams object with the ability to set a context for a request.

func NewGetLicenseUsersParamsWithHTTPClient

func NewGetLicenseUsersParamsWithHTTPClient(client *http.Client) *GetLicenseUsersParams

NewGetLicenseUsersParamsWithHTTPClient creates a new GetLicenseUsersParams object with the ability to set a custom HTTPClient for a request.

func NewGetLicenseUsersParamsWithTimeout

func NewGetLicenseUsersParamsWithTimeout(timeout time.Duration) *GetLicenseUsersParams

NewGetLicenseUsersParamsWithTimeout creates a new GetLicenseUsersParams object with the ability to set a timeout on a request.

func (*GetLicenseUsersParams) SetContext

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

SetContext adds the context to the get license users params

func (*GetLicenseUsersParams) SetDefaults

func (o *GetLicenseUsersParams) SetDefaults()

SetDefaults hydrates default values in the get license users params (not the query body).

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

func (*GetLicenseUsersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get license users params

func (*GetLicenseUsersParams) SetPageNumber

func (o *GetLicenseUsersParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get license users params

func (*GetLicenseUsersParams) SetPageSize

func (o *GetLicenseUsersParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get license users params

func (*GetLicenseUsersParams) SetTimeout

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

SetTimeout adds the timeout to the get license users params

func (*GetLicenseUsersParams) WithContext

WithContext adds the context to the get license users params

func (*GetLicenseUsersParams) WithDefaults

func (o *GetLicenseUsersParams) WithDefaults() *GetLicenseUsersParams

WithDefaults hydrates default values in the get license users params (not the query body).

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

func (*GetLicenseUsersParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get license users params

func (*GetLicenseUsersParams) WithPageNumber

func (o *GetLicenseUsersParams) WithPageNumber(pageNumber *int32) *GetLicenseUsersParams

WithPageNumber adds the pageNumber to the get license users params

func (*GetLicenseUsersParams) WithPageSize

func (o *GetLicenseUsersParams) WithPageSize(pageSize *int32) *GetLicenseUsersParams

WithPageSize adds the pageSize to the get license users params

func (*GetLicenseUsersParams) WithTimeout

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

WithTimeout adds the timeout to the get license users params

func (*GetLicenseUsersParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetLicenseUsersReader

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

GetLicenseUsersReader is a Reader for the GetLicenseUsers structure.

func (*GetLicenseUsersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetLicenseUsersRequestEntityTooLarge

type GetLicenseUsersRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetLicenseUsersRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetLicenseUsersRequestEntityTooLarge

func NewGetLicenseUsersRequestEntityTooLarge() *GetLicenseUsersRequestEntityTooLarge

NewGetLicenseUsersRequestEntityTooLarge creates a GetLicenseUsersRequestEntityTooLarge with default headers values

func (*GetLicenseUsersRequestEntityTooLarge) Error

func (*GetLicenseUsersRequestEntityTooLarge) GetPayload

func (*GetLicenseUsersRequestEntityTooLarge) IsClientError

func (o *GetLicenseUsersRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get license users request entity too large response has a 4xx status code

func (*GetLicenseUsersRequestEntityTooLarge) IsCode

IsCode returns true when this get license users request entity too large response a status code equal to that given

func (*GetLicenseUsersRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get license users request entity too large response has a 3xx status code

func (*GetLicenseUsersRequestEntityTooLarge) IsServerError

func (o *GetLicenseUsersRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get license users request entity too large response has a 5xx status code

func (*GetLicenseUsersRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get license users request entity too large response has a 2xx status code

func (*GetLicenseUsersRequestEntityTooLarge) String

type GetLicenseUsersRequestTimeout

type GetLicenseUsersRequestTimeout struct {
	Payload *models.ErrorBody
}

GetLicenseUsersRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetLicenseUsersRequestTimeout

func NewGetLicenseUsersRequestTimeout() *GetLicenseUsersRequestTimeout

NewGetLicenseUsersRequestTimeout creates a GetLicenseUsersRequestTimeout with default headers values

func (*GetLicenseUsersRequestTimeout) Error

func (*GetLicenseUsersRequestTimeout) GetPayload

func (*GetLicenseUsersRequestTimeout) IsClientError

func (o *GetLicenseUsersRequestTimeout) IsClientError() bool

IsClientError returns true when this get license users request timeout response has a 4xx status code

func (*GetLicenseUsersRequestTimeout) IsCode

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

IsCode returns true when this get license users request timeout response a status code equal to that given

func (*GetLicenseUsersRequestTimeout) IsRedirect

func (o *GetLicenseUsersRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get license users request timeout response has a 3xx status code

func (*GetLicenseUsersRequestTimeout) IsServerError

func (o *GetLicenseUsersRequestTimeout) IsServerError() bool

IsServerError returns true when this get license users request timeout response has a 5xx status code

func (*GetLicenseUsersRequestTimeout) IsSuccess

func (o *GetLicenseUsersRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get license users request timeout response has a 2xx status code

func (*GetLicenseUsersRequestTimeout) String

type GetLicenseUsersServiceUnavailable

type GetLicenseUsersServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetLicenseUsersServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetLicenseUsersServiceUnavailable

func NewGetLicenseUsersServiceUnavailable() *GetLicenseUsersServiceUnavailable

NewGetLicenseUsersServiceUnavailable creates a GetLicenseUsersServiceUnavailable with default headers values

func (*GetLicenseUsersServiceUnavailable) Error

func (*GetLicenseUsersServiceUnavailable) GetPayload

func (*GetLicenseUsersServiceUnavailable) IsClientError

func (o *GetLicenseUsersServiceUnavailable) IsClientError() bool

IsClientError returns true when this get license users service unavailable response has a 4xx status code

func (*GetLicenseUsersServiceUnavailable) IsCode

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

IsCode returns true when this get license users service unavailable response a status code equal to that given

func (*GetLicenseUsersServiceUnavailable) IsRedirect

func (o *GetLicenseUsersServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get license users service unavailable response has a 3xx status code

func (*GetLicenseUsersServiceUnavailable) IsServerError

func (o *GetLicenseUsersServiceUnavailable) IsServerError() bool

IsServerError returns true when this get license users service unavailable response has a 5xx status code

func (*GetLicenseUsersServiceUnavailable) IsSuccess

func (o *GetLicenseUsersServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get license users service unavailable response has a 2xx status code

func (*GetLicenseUsersServiceUnavailable) String

type GetLicenseUsersTooManyRequests

type GetLicenseUsersTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetLicenseUsersTooManyRequests

func NewGetLicenseUsersTooManyRequests() *GetLicenseUsersTooManyRequests

NewGetLicenseUsersTooManyRequests creates a GetLicenseUsersTooManyRequests with default headers values

func (*GetLicenseUsersTooManyRequests) Error

func (*GetLicenseUsersTooManyRequests) GetPayload

func (*GetLicenseUsersTooManyRequests) IsClientError

func (o *GetLicenseUsersTooManyRequests) IsClientError() bool

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

func (*GetLicenseUsersTooManyRequests) IsCode

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

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

func (*GetLicenseUsersTooManyRequests) IsRedirect

func (o *GetLicenseUsersTooManyRequests) IsRedirect() bool

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

func (*GetLicenseUsersTooManyRequests) IsServerError

func (o *GetLicenseUsersTooManyRequests) IsServerError() bool

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

func (*GetLicenseUsersTooManyRequests) IsSuccess

func (o *GetLicenseUsersTooManyRequests) IsSuccess() bool

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

func (*GetLicenseUsersTooManyRequests) String

type GetLicenseUsersUnauthorized

type GetLicenseUsersUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetLicenseUsersUnauthorized

func NewGetLicenseUsersUnauthorized() *GetLicenseUsersUnauthorized

NewGetLicenseUsersUnauthorized creates a GetLicenseUsersUnauthorized with default headers values

func (*GetLicenseUsersUnauthorized) Error

func (*GetLicenseUsersUnauthorized) GetPayload

func (o *GetLicenseUsersUnauthorized) GetPayload() *models.ErrorBody

func (*GetLicenseUsersUnauthorized) IsClientError

func (o *GetLicenseUsersUnauthorized) IsClientError() bool

IsClientError returns true when this get license users unauthorized response has a 4xx status code

func (*GetLicenseUsersUnauthorized) IsCode

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

IsCode returns true when this get license users unauthorized response a status code equal to that given

func (*GetLicenseUsersUnauthorized) IsRedirect

func (o *GetLicenseUsersUnauthorized) IsRedirect() bool

IsRedirect returns true when this get license users unauthorized response has a 3xx status code

func (*GetLicenseUsersUnauthorized) IsServerError

func (o *GetLicenseUsersUnauthorized) IsServerError() bool

IsServerError returns true when this get license users unauthorized response has a 5xx status code

func (*GetLicenseUsersUnauthorized) IsSuccess

func (o *GetLicenseUsersUnauthorized) IsSuccess() bool

IsSuccess returns true when this get license users unauthorized response has a 2xx status code

func (*GetLicenseUsersUnauthorized) String

func (o *GetLicenseUsersUnauthorized) String() string

type GetLicenseUsersUnsupportedMediaType

type GetLicenseUsersUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetLicenseUsersUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetLicenseUsersUnsupportedMediaType

func NewGetLicenseUsersUnsupportedMediaType() *GetLicenseUsersUnsupportedMediaType

NewGetLicenseUsersUnsupportedMediaType creates a GetLicenseUsersUnsupportedMediaType with default headers values

func (*GetLicenseUsersUnsupportedMediaType) Error

func (*GetLicenseUsersUnsupportedMediaType) GetPayload

func (*GetLicenseUsersUnsupportedMediaType) IsClientError

func (o *GetLicenseUsersUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get license users unsupported media type response has a 4xx status code

func (*GetLicenseUsersUnsupportedMediaType) IsCode

IsCode returns true when this get license users unsupported media type response a status code equal to that given

func (*GetLicenseUsersUnsupportedMediaType) IsRedirect

func (o *GetLicenseUsersUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get license users unsupported media type response has a 3xx status code

func (*GetLicenseUsersUnsupportedMediaType) IsServerError

func (o *GetLicenseUsersUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get license users unsupported media type response has a 5xx status code

func (*GetLicenseUsersUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get license users unsupported media type response has a 2xx status code

func (*GetLicenseUsersUnsupportedMediaType) String

type PostLicenseInferBadRequest

type PostLicenseInferBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostLicenseInferBadRequest

func NewPostLicenseInferBadRequest() *PostLicenseInferBadRequest

NewPostLicenseInferBadRequest creates a PostLicenseInferBadRequest with default headers values

func (*PostLicenseInferBadRequest) Error

func (*PostLicenseInferBadRequest) GetPayload

func (o *PostLicenseInferBadRequest) GetPayload() *models.ErrorBody

func (*PostLicenseInferBadRequest) IsClientError

func (o *PostLicenseInferBadRequest) IsClientError() bool

IsClientError returns true when this post license infer bad request response has a 4xx status code

func (*PostLicenseInferBadRequest) IsCode

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

IsCode returns true when this post license infer bad request response a status code equal to that given

func (*PostLicenseInferBadRequest) IsRedirect

func (o *PostLicenseInferBadRequest) IsRedirect() bool

IsRedirect returns true when this post license infer bad request response has a 3xx status code

func (*PostLicenseInferBadRequest) IsServerError

func (o *PostLicenseInferBadRequest) IsServerError() bool

IsServerError returns true when this post license infer bad request response has a 5xx status code

func (*PostLicenseInferBadRequest) IsSuccess

func (o *PostLicenseInferBadRequest) IsSuccess() bool

IsSuccess returns true when this post license infer bad request response has a 2xx status code

func (*PostLicenseInferBadRequest) String

func (o *PostLicenseInferBadRequest) String() string

type PostLicenseInferForbidden

type PostLicenseInferForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostLicenseInferForbidden

func NewPostLicenseInferForbidden() *PostLicenseInferForbidden

NewPostLicenseInferForbidden creates a PostLicenseInferForbidden with default headers values

func (*PostLicenseInferForbidden) Error

func (o *PostLicenseInferForbidden) Error() string

func (*PostLicenseInferForbidden) GetPayload

func (o *PostLicenseInferForbidden) GetPayload() *models.ErrorBody

func (*PostLicenseInferForbidden) IsClientError

func (o *PostLicenseInferForbidden) IsClientError() bool

IsClientError returns true when this post license infer forbidden response has a 4xx status code

func (*PostLicenseInferForbidden) IsCode

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

IsCode returns true when this post license infer forbidden response a status code equal to that given

func (*PostLicenseInferForbidden) IsRedirect

func (o *PostLicenseInferForbidden) IsRedirect() bool

IsRedirect returns true when this post license infer forbidden response has a 3xx status code

func (*PostLicenseInferForbidden) IsServerError

func (o *PostLicenseInferForbidden) IsServerError() bool

IsServerError returns true when this post license infer forbidden response has a 5xx status code

func (*PostLicenseInferForbidden) IsSuccess

func (o *PostLicenseInferForbidden) IsSuccess() bool

IsSuccess returns true when this post license infer forbidden response has a 2xx status code

func (*PostLicenseInferForbidden) String

func (o *PostLicenseInferForbidden) String() string

type PostLicenseInferGatewayTimeout

type PostLicenseInferGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseInferGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostLicenseInferGatewayTimeout

func NewPostLicenseInferGatewayTimeout() *PostLicenseInferGatewayTimeout

NewPostLicenseInferGatewayTimeout creates a PostLicenseInferGatewayTimeout with default headers values

func (*PostLicenseInferGatewayTimeout) Error

func (*PostLicenseInferGatewayTimeout) GetPayload

func (*PostLicenseInferGatewayTimeout) IsClientError

func (o *PostLicenseInferGatewayTimeout) IsClientError() bool

IsClientError returns true when this post license infer gateway timeout response has a 4xx status code

func (*PostLicenseInferGatewayTimeout) IsCode

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

IsCode returns true when this post license infer gateway timeout response a status code equal to that given

func (*PostLicenseInferGatewayTimeout) IsRedirect

func (o *PostLicenseInferGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post license infer gateway timeout response has a 3xx status code

func (*PostLicenseInferGatewayTimeout) IsServerError

func (o *PostLicenseInferGatewayTimeout) IsServerError() bool

IsServerError returns true when this post license infer gateway timeout response has a 5xx status code

func (*PostLicenseInferGatewayTimeout) IsSuccess

func (o *PostLicenseInferGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post license infer gateway timeout response has a 2xx status code

func (*PostLicenseInferGatewayTimeout) String

type PostLicenseInferInternalServerError

type PostLicenseInferInternalServerError struct {
	Payload *models.ErrorBody
}

PostLicenseInferInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostLicenseInferInternalServerError

func NewPostLicenseInferInternalServerError() *PostLicenseInferInternalServerError

NewPostLicenseInferInternalServerError creates a PostLicenseInferInternalServerError with default headers values

func (*PostLicenseInferInternalServerError) Error

func (*PostLicenseInferInternalServerError) GetPayload

func (*PostLicenseInferInternalServerError) IsClientError

func (o *PostLicenseInferInternalServerError) IsClientError() bool

IsClientError returns true when this post license infer internal server error response has a 4xx status code

func (*PostLicenseInferInternalServerError) IsCode

IsCode returns true when this post license infer internal server error response a status code equal to that given

func (*PostLicenseInferInternalServerError) IsRedirect

func (o *PostLicenseInferInternalServerError) IsRedirect() bool

IsRedirect returns true when this post license infer internal server error response has a 3xx status code

func (*PostLicenseInferInternalServerError) IsServerError

func (o *PostLicenseInferInternalServerError) IsServerError() bool

IsServerError returns true when this post license infer internal server error response has a 5xx status code

func (*PostLicenseInferInternalServerError) IsSuccess

IsSuccess returns true when this post license infer internal server error response has a 2xx status code

func (*PostLicenseInferInternalServerError) String

type PostLicenseInferNotFound

type PostLicenseInferNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostLicenseInferNotFound

func NewPostLicenseInferNotFound() *PostLicenseInferNotFound

NewPostLicenseInferNotFound creates a PostLicenseInferNotFound with default headers values

func (*PostLicenseInferNotFound) Error

func (o *PostLicenseInferNotFound) Error() string

func (*PostLicenseInferNotFound) GetPayload

func (o *PostLicenseInferNotFound) GetPayload() *models.ErrorBody

func (*PostLicenseInferNotFound) IsClientError

func (o *PostLicenseInferNotFound) IsClientError() bool

IsClientError returns true when this post license infer not found response has a 4xx status code

func (*PostLicenseInferNotFound) IsCode

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

IsCode returns true when this post license infer not found response a status code equal to that given

func (*PostLicenseInferNotFound) IsRedirect

func (o *PostLicenseInferNotFound) IsRedirect() bool

IsRedirect returns true when this post license infer not found response has a 3xx status code

func (*PostLicenseInferNotFound) IsServerError

func (o *PostLicenseInferNotFound) IsServerError() bool

IsServerError returns true when this post license infer not found response has a 5xx status code

func (*PostLicenseInferNotFound) IsSuccess

func (o *PostLicenseInferNotFound) IsSuccess() bool

IsSuccess returns true when this post license infer not found response has a 2xx status code

func (*PostLicenseInferNotFound) String

func (o *PostLicenseInferNotFound) String() string

type PostLicenseInferOK

type PostLicenseInferOK struct {
	Payload []string
}

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

successful operation

func NewPostLicenseInferOK

func NewPostLicenseInferOK() *PostLicenseInferOK

NewPostLicenseInferOK creates a PostLicenseInferOK with default headers values

func (*PostLicenseInferOK) Error

func (o *PostLicenseInferOK) Error() string

func (*PostLicenseInferOK) GetPayload

func (o *PostLicenseInferOK) GetPayload() []string

func (*PostLicenseInferOK) IsClientError

func (o *PostLicenseInferOK) IsClientError() bool

IsClientError returns true when this post license infer o k response has a 4xx status code

func (*PostLicenseInferOK) IsCode

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

IsCode returns true when this post license infer o k response a status code equal to that given

func (*PostLicenseInferOK) IsRedirect

func (o *PostLicenseInferOK) IsRedirect() bool

IsRedirect returns true when this post license infer o k response has a 3xx status code

func (*PostLicenseInferOK) IsServerError

func (o *PostLicenseInferOK) IsServerError() bool

IsServerError returns true when this post license infer o k response has a 5xx status code

func (*PostLicenseInferOK) IsSuccess

func (o *PostLicenseInferOK) IsSuccess() bool

IsSuccess returns true when this post license infer o k response has a 2xx status code

func (*PostLicenseInferOK) String

func (o *PostLicenseInferOK) String() string

type PostLicenseInferParams

type PostLicenseInferParams struct {

	/* Body.

	   The roleIds to use while inferring licenses
	*/
	Body []string

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

PostLicenseInferParams contains all the parameters to send to the API endpoint

for the post license infer operation.

Typically these are written to a http.Request.

func NewPostLicenseInferParams

func NewPostLicenseInferParams() *PostLicenseInferParams

NewPostLicenseInferParams creates a new PostLicenseInferParams 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 NewPostLicenseInferParamsWithContext

func NewPostLicenseInferParamsWithContext(ctx context.Context) *PostLicenseInferParams

NewPostLicenseInferParamsWithContext creates a new PostLicenseInferParams object with the ability to set a context for a request.

func NewPostLicenseInferParamsWithHTTPClient

func NewPostLicenseInferParamsWithHTTPClient(client *http.Client) *PostLicenseInferParams

NewPostLicenseInferParamsWithHTTPClient creates a new PostLicenseInferParams object with the ability to set a custom HTTPClient for a request.

func NewPostLicenseInferParamsWithTimeout

func NewPostLicenseInferParamsWithTimeout(timeout time.Duration) *PostLicenseInferParams

NewPostLicenseInferParamsWithTimeout creates a new PostLicenseInferParams object with the ability to set a timeout on a request.

func (*PostLicenseInferParams) SetBody

func (o *PostLicenseInferParams) SetBody(body []string)

SetBody adds the body to the post license infer params

func (*PostLicenseInferParams) SetContext

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

SetContext adds the context to the post license infer params

func (*PostLicenseInferParams) SetDefaults

func (o *PostLicenseInferParams) SetDefaults()

SetDefaults hydrates default values in the post license infer params (not the query body).

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

func (*PostLicenseInferParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post license infer params

func (*PostLicenseInferParams) SetTimeout

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

SetTimeout adds the timeout to the post license infer params

func (*PostLicenseInferParams) WithBody

WithBody adds the body to the post license infer params

func (*PostLicenseInferParams) WithContext

WithContext adds the context to the post license infer params

func (*PostLicenseInferParams) WithDefaults

WithDefaults hydrates default values in the post license infer params (not the query body).

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

func (*PostLicenseInferParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post license infer params

func (*PostLicenseInferParams) WithTimeout

WithTimeout adds the timeout to the post license infer params

func (*PostLicenseInferParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostLicenseInferReader

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

PostLicenseInferReader is a Reader for the PostLicenseInfer structure.

func (*PostLicenseInferReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostLicenseInferRequestEntityTooLarge

type PostLicenseInferRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostLicenseInferRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostLicenseInferRequestEntityTooLarge

func NewPostLicenseInferRequestEntityTooLarge() *PostLicenseInferRequestEntityTooLarge

NewPostLicenseInferRequestEntityTooLarge creates a PostLicenseInferRequestEntityTooLarge with default headers values

func (*PostLicenseInferRequestEntityTooLarge) Error

func (*PostLicenseInferRequestEntityTooLarge) GetPayload

func (*PostLicenseInferRequestEntityTooLarge) IsClientError

func (o *PostLicenseInferRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post license infer request entity too large response has a 4xx status code

func (*PostLicenseInferRequestEntityTooLarge) IsCode

IsCode returns true when this post license infer request entity too large response a status code equal to that given

func (*PostLicenseInferRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post license infer request entity too large response has a 3xx status code

func (*PostLicenseInferRequestEntityTooLarge) IsServerError

func (o *PostLicenseInferRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post license infer request entity too large response has a 5xx status code

func (*PostLicenseInferRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post license infer request entity too large response has a 2xx status code

func (*PostLicenseInferRequestEntityTooLarge) String

type PostLicenseInferRequestTimeout

type PostLicenseInferRequestTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseInferRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostLicenseInferRequestTimeout

func NewPostLicenseInferRequestTimeout() *PostLicenseInferRequestTimeout

NewPostLicenseInferRequestTimeout creates a PostLicenseInferRequestTimeout with default headers values

func (*PostLicenseInferRequestTimeout) Error

func (*PostLicenseInferRequestTimeout) GetPayload

func (*PostLicenseInferRequestTimeout) IsClientError

func (o *PostLicenseInferRequestTimeout) IsClientError() bool

IsClientError returns true when this post license infer request timeout response has a 4xx status code

func (*PostLicenseInferRequestTimeout) IsCode

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

IsCode returns true when this post license infer request timeout response a status code equal to that given

func (*PostLicenseInferRequestTimeout) IsRedirect

func (o *PostLicenseInferRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post license infer request timeout response has a 3xx status code

func (*PostLicenseInferRequestTimeout) IsServerError

func (o *PostLicenseInferRequestTimeout) IsServerError() bool

IsServerError returns true when this post license infer request timeout response has a 5xx status code

func (*PostLicenseInferRequestTimeout) IsSuccess

func (o *PostLicenseInferRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post license infer request timeout response has a 2xx status code

func (*PostLicenseInferRequestTimeout) String

type PostLicenseInferServiceUnavailable

type PostLicenseInferServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostLicenseInferServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostLicenseInferServiceUnavailable

func NewPostLicenseInferServiceUnavailable() *PostLicenseInferServiceUnavailable

NewPostLicenseInferServiceUnavailable creates a PostLicenseInferServiceUnavailable with default headers values

func (*PostLicenseInferServiceUnavailable) Error

func (*PostLicenseInferServiceUnavailable) GetPayload

func (*PostLicenseInferServiceUnavailable) IsClientError

func (o *PostLicenseInferServiceUnavailable) IsClientError() bool

IsClientError returns true when this post license infer service unavailable response has a 4xx status code

func (*PostLicenseInferServiceUnavailable) IsCode

IsCode returns true when this post license infer service unavailable response a status code equal to that given

func (*PostLicenseInferServiceUnavailable) IsRedirect

func (o *PostLicenseInferServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this post license infer service unavailable response has a 3xx status code

func (*PostLicenseInferServiceUnavailable) IsServerError

func (o *PostLicenseInferServiceUnavailable) IsServerError() bool

IsServerError returns true when this post license infer service unavailable response has a 5xx status code

func (*PostLicenseInferServiceUnavailable) IsSuccess

IsSuccess returns true when this post license infer service unavailable response has a 2xx status code

func (*PostLicenseInferServiceUnavailable) String

type PostLicenseInferTooManyRequests

type PostLicenseInferTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostLicenseInferTooManyRequests

func NewPostLicenseInferTooManyRequests() *PostLicenseInferTooManyRequests

NewPostLicenseInferTooManyRequests creates a PostLicenseInferTooManyRequests with default headers values

func (*PostLicenseInferTooManyRequests) Error

func (*PostLicenseInferTooManyRequests) GetPayload

func (*PostLicenseInferTooManyRequests) IsClientError

func (o *PostLicenseInferTooManyRequests) IsClientError() bool

IsClientError returns true when this post license infer too many requests response has a 4xx status code

func (*PostLicenseInferTooManyRequests) IsCode

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

IsCode returns true when this post license infer too many requests response a status code equal to that given

func (*PostLicenseInferTooManyRequests) IsRedirect

func (o *PostLicenseInferTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post license infer too many requests response has a 3xx status code

func (*PostLicenseInferTooManyRequests) IsServerError

func (o *PostLicenseInferTooManyRequests) IsServerError() bool

IsServerError returns true when this post license infer too many requests response has a 5xx status code

func (*PostLicenseInferTooManyRequests) IsSuccess

func (o *PostLicenseInferTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post license infer too many requests response has a 2xx status code

func (*PostLicenseInferTooManyRequests) String

type PostLicenseInferUnauthorized

type PostLicenseInferUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostLicenseInferUnauthorized

func NewPostLicenseInferUnauthorized() *PostLicenseInferUnauthorized

NewPostLicenseInferUnauthorized creates a PostLicenseInferUnauthorized with default headers values

func (*PostLicenseInferUnauthorized) Error

func (*PostLicenseInferUnauthorized) GetPayload

func (*PostLicenseInferUnauthorized) IsClientError

func (o *PostLicenseInferUnauthorized) IsClientError() bool

IsClientError returns true when this post license infer unauthorized response has a 4xx status code

func (*PostLicenseInferUnauthorized) IsCode

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

IsCode returns true when this post license infer unauthorized response a status code equal to that given

func (*PostLicenseInferUnauthorized) IsRedirect

func (o *PostLicenseInferUnauthorized) IsRedirect() bool

IsRedirect returns true when this post license infer unauthorized response has a 3xx status code

func (*PostLicenseInferUnauthorized) IsServerError

func (o *PostLicenseInferUnauthorized) IsServerError() bool

IsServerError returns true when this post license infer unauthorized response has a 5xx status code

func (*PostLicenseInferUnauthorized) IsSuccess

func (o *PostLicenseInferUnauthorized) IsSuccess() bool

IsSuccess returns true when this post license infer unauthorized response has a 2xx status code

func (*PostLicenseInferUnauthorized) String

type PostLicenseInferUnsupportedMediaType

type PostLicenseInferUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostLicenseInferUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostLicenseInferUnsupportedMediaType

func NewPostLicenseInferUnsupportedMediaType() *PostLicenseInferUnsupportedMediaType

NewPostLicenseInferUnsupportedMediaType creates a PostLicenseInferUnsupportedMediaType with default headers values

func (*PostLicenseInferUnsupportedMediaType) Error

func (*PostLicenseInferUnsupportedMediaType) GetPayload

func (*PostLicenseInferUnsupportedMediaType) IsClientError

func (o *PostLicenseInferUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post license infer unsupported media type response has a 4xx status code

func (*PostLicenseInferUnsupportedMediaType) IsCode

IsCode returns true when this post license infer unsupported media type response a status code equal to that given

func (*PostLicenseInferUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post license infer unsupported media type response has a 3xx status code

func (*PostLicenseInferUnsupportedMediaType) IsServerError

func (o *PostLicenseInferUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post license infer unsupported media type response has a 5xx status code

func (*PostLicenseInferUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post license infer unsupported media type response has a 2xx status code

func (*PostLicenseInferUnsupportedMediaType) String

type PostLicenseOrganizationBadRequest

type PostLicenseOrganizationBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostLicenseOrganizationBadRequest

func NewPostLicenseOrganizationBadRequest() *PostLicenseOrganizationBadRequest

NewPostLicenseOrganizationBadRequest creates a PostLicenseOrganizationBadRequest with default headers values

func (*PostLicenseOrganizationBadRequest) Error

func (*PostLicenseOrganizationBadRequest) GetPayload

func (*PostLicenseOrganizationBadRequest) IsClientError

func (o *PostLicenseOrganizationBadRequest) IsClientError() bool

IsClientError returns true when this post license organization bad request response has a 4xx status code

func (*PostLicenseOrganizationBadRequest) IsCode

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

IsCode returns true when this post license organization bad request response a status code equal to that given

func (*PostLicenseOrganizationBadRequest) IsRedirect

func (o *PostLicenseOrganizationBadRequest) IsRedirect() bool

IsRedirect returns true when this post license organization bad request response has a 3xx status code

func (*PostLicenseOrganizationBadRequest) IsServerError

func (o *PostLicenseOrganizationBadRequest) IsServerError() bool

IsServerError returns true when this post license organization bad request response has a 5xx status code

func (*PostLicenseOrganizationBadRequest) IsSuccess

func (o *PostLicenseOrganizationBadRequest) IsSuccess() bool

IsSuccess returns true when this post license organization bad request response has a 2xx status code

func (*PostLicenseOrganizationBadRequest) String

type PostLicenseOrganizationForbidden

type PostLicenseOrganizationForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostLicenseOrganizationForbidden

func NewPostLicenseOrganizationForbidden() *PostLicenseOrganizationForbidden

NewPostLicenseOrganizationForbidden creates a PostLicenseOrganizationForbidden with default headers values

func (*PostLicenseOrganizationForbidden) Error

func (*PostLicenseOrganizationForbidden) GetPayload

func (*PostLicenseOrganizationForbidden) IsClientError

func (o *PostLicenseOrganizationForbidden) IsClientError() bool

IsClientError returns true when this post license organization forbidden response has a 4xx status code

func (*PostLicenseOrganizationForbidden) IsCode

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

IsCode returns true when this post license organization forbidden response a status code equal to that given

func (*PostLicenseOrganizationForbidden) IsRedirect

func (o *PostLicenseOrganizationForbidden) IsRedirect() bool

IsRedirect returns true when this post license organization forbidden response has a 3xx status code

func (*PostLicenseOrganizationForbidden) IsServerError

func (o *PostLicenseOrganizationForbidden) IsServerError() bool

IsServerError returns true when this post license organization forbidden response has a 5xx status code

func (*PostLicenseOrganizationForbidden) IsSuccess

func (o *PostLicenseOrganizationForbidden) IsSuccess() bool

IsSuccess returns true when this post license organization forbidden response has a 2xx status code

func (*PostLicenseOrganizationForbidden) String

type PostLicenseOrganizationGatewayTimeout

type PostLicenseOrganizationGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseOrganizationGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostLicenseOrganizationGatewayTimeout

func NewPostLicenseOrganizationGatewayTimeout() *PostLicenseOrganizationGatewayTimeout

NewPostLicenseOrganizationGatewayTimeout creates a PostLicenseOrganizationGatewayTimeout with default headers values

func (*PostLicenseOrganizationGatewayTimeout) Error

func (*PostLicenseOrganizationGatewayTimeout) GetPayload

func (*PostLicenseOrganizationGatewayTimeout) IsClientError

func (o *PostLicenseOrganizationGatewayTimeout) IsClientError() bool

IsClientError returns true when this post license organization gateway timeout response has a 4xx status code

func (*PostLicenseOrganizationGatewayTimeout) IsCode

IsCode returns true when this post license organization gateway timeout response a status code equal to that given

func (*PostLicenseOrganizationGatewayTimeout) IsRedirect

IsRedirect returns true when this post license organization gateway timeout response has a 3xx status code

func (*PostLicenseOrganizationGatewayTimeout) IsServerError

func (o *PostLicenseOrganizationGatewayTimeout) IsServerError() bool

IsServerError returns true when this post license organization gateway timeout response has a 5xx status code

func (*PostLicenseOrganizationGatewayTimeout) IsSuccess

IsSuccess returns true when this post license organization gateway timeout response has a 2xx status code

func (*PostLicenseOrganizationGatewayTimeout) String

type PostLicenseOrganizationInternalServerError

type PostLicenseOrganizationInternalServerError struct {
	Payload *models.ErrorBody
}

PostLicenseOrganizationInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostLicenseOrganizationInternalServerError

func NewPostLicenseOrganizationInternalServerError() *PostLicenseOrganizationInternalServerError

NewPostLicenseOrganizationInternalServerError creates a PostLicenseOrganizationInternalServerError with default headers values

func (*PostLicenseOrganizationInternalServerError) Error

func (*PostLicenseOrganizationInternalServerError) GetPayload

func (*PostLicenseOrganizationInternalServerError) IsClientError

IsClientError returns true when this post license organization internal server error response has a 4xx status code

func (*PostLicenseOrganizationInternalServerError) IsCode

IsCode returns true when this post license organization internal server error response a status code equal to that given

func (*PostLicenseOrganizationInternalServerError) IsRedirect

IsRedirect returns true when this post license organization internal server error response has a 3xx status code

func (*PostLicenseOrganizationInternalServerError) IsServerError

IsServerError returns true when this post license organization internal server error response has a 5xx status code

func (*PostLicenseOrganizationInternalServerError) IsSuccess

IsSuccess returns true when this post license organization internal server error response has a 2xx status code

func (*PostLicenseOrganizationInternalServerError) String

type PostLicenseOrganizationNotFound

type PostLicenseOrganizationNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostLicenseOrganizationNotFound

func NewPostLicenseOrganizationNotFound() *PostLicenseOrganizationNotFound

NewPostLicenseOrganizationNotFound creates a PostLicenseOrganizationNotFound with default headers values

func (*PostLicenseOrganizationNotFound) Error

func (*PostLicenseOrganizationNotFound) GetPayload

func (*PostLicenseOrganizationNotFound) IsClientError

func (o *PostLicenseOrganizationNotFound) IsClientError() bool

IsClientError returns true when this post license organization not found response has a 4xx status code

func (*PostLicenseOrganizationNotFound) IsCode

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

IsCode returns true when this post license organization not found response a status code equal to that given

func (*PostLicenseOrganizationNotFound) IsRedirect

func (o *PostLicenseOrganizationNotFound) IsRedirect() bool

IsRedirect returns true when this post license organization not found response has a 3xx status code

func (*PostLicenseOrganizationNotFound) IsServerError

func (o *PostLicenseOrganizationNotFound) IsServerError() bool

IsServerError returns true when this post license organization not found response has a 5xx status code

func (*PostLicenseOrganizationNotFound) IsSuccess

func (o *PostLicenseOrganizationNotFound) IsSuccess() bool

IsSuccess returns true when this post license organization not found response has a 2xx status code

func (*PostLicenseOrganizationNotFound) String

type PostLicenseOrganizationOK

type PostLicenseOrganizationOK struct {
	Payload []*models.LicenseUpdateStatus
}

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

successful operation

func NewPostLicenseOrganizationOK

func NewPostLicenseOrganizationOK() *PostLicenseOrganizationOK

NewPostLicenseOrganizationOK creates a PostLicenseOrganizationOK with default headers values

func (*PostLicenseOrganizationOK) Error

func (o *PostLicenseOrganizationOK) Error() string

func (*PostLicenseOrganizationOK) GetPayload

func (*PostLicenseOrganizationOK) IsClientError

func (o *PostLicenseOrganizationOK) IsClientError() bool

IsClientError returns true when this post license organization o k response has a 4xx status code

func (*PostLicenseOrganizationOK) IsCode

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

IsCode returns true when this post license organization o k response a status code equal to that given

func (*PostLicenseOrganizationOK) IsRedirect

func (o *PostLicenseOrganizationOK) IsRedirect() bool

IsRedirect returns true when this post license organization o k response has a 3xx status code

func (*PostLicenseOrganizationOK) IsServerError

func (o *PostLicenseOrganizationOK) IsServerError() bool

IsServerError returns true when this post license organization o k response has a 5xx status code

func (*PostLicenseOrganizationOK) IsSuccess

func (o *PostLicenseOrganizationOK) IsSuccess() bool

IsSuccess returns true when this post license organization o k response has a 2xx status code

func (*PostLicenseOrganizationOK) String

func (o *PostLicenseOrganizationOK) String() string

type PostLicenseOrganizationParams

type PostLicenseOrganizationParams struct {

	/* Body.

	   The license assignments to update.
	*/
	Body *models.LicenseBatchAssignmentRequest

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

PostLicenseOrganizationParams contains all the parameters to send to the API endpoint

for the post license organization operation.

Typically these are written to a http.Request.

func NewPostLicenseOrganizationParams

func NewPostLicenseOrganizationParams() *PostLicenseOrganizationParams

NewPostLicenseOrganizationParams creates a new PostLicenseOrganizationParams 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 NewPostLicenseOrganizationParamsWithContext

func NewPostLicenseOrganizationParamsWithContext(ctx context.Context) *PostLicenseOrganizationParams

NewPostLicenseOrganizationParamsWithContext creates a new PostLicenseOrganizationParams object with the ability to set a context for a request.

func NewPostLicenseOrganizationParamsWithHTTPClient

func NewPostLicenseOrganizationParamsWithHTTPClient(client *http.Client) *PostLicenseOrganizationParams

NewPostLicenseOrganizationParamsWithHTTPClient creates a new PostLicenseOrganizationParams object with the ability to set a custom HTTPClient for a request.

func NewPostLicenseOrganizationParamsWithTimeout

func NewPostLicenseOrganizationParamsWithTimeout(timeout time.Duration) *PostLicenseOrganizationParams

NewPostLicenseOrganizationParamsWithTimeout creates a new PostLicenseOrganizationParams object with the ability to set a timeout on a request.

func (*PostLicenseOrganizationParams) SetBody

SetBody adds the body to the post license organization params

func (*PostLicenseOrganizationParams) SetContext

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

SetContext adds the context to the post license organization params

func (*PostLicenseOrganizationParams) SetDefaults

func (o *PostLicenseOrganizationParams) SetDefaults()

SetDefaults hydrates default values in the post license organization params (not the query body).

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

func (*PostLicenseOrganizationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post license organization params

func (*PostLicenseOrganizationParams) SetTimeout

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

SetTimeout adds the timeout to the post license organization params

func (*PostLicenseOrganizationParams) WithBody

WithBody adds the body to the post license organization params

func (*PostLicenseOrganizationParams) WithContext

WithContext adds the context to the post license organization params

func (*PostLicenseOrganizationParams) WithDefaults

WithDefaults hydrates default values in the post license organization params (not the query body).

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

func (*PostLicenseOrganizationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post license organization params

func (*PostLicenseOrganizationParams) WithTimeout

WithTimeout adds the timeout to the post license organization params

func (*PostLicenseOrganizationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostLicenseOrganizationReader

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

PostLicenseOrganizationReader is a Reader for the PostLicenseOrganization structure.

func (*PostLicenseOrganizationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostLicenseOrganizationRequestEntityTooLarge

type PostLicenseOrganizationRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostLicenseOrganizationRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostLicenseOrganizationRequestEntityTooLarge

func NewPostLicenseOrganizationRequestEntityTooLarge() *PostLicenseOrganizationRequestEntityTooLarge

NewPostLicenseOrganizationRequestEntityTooLarge creates a PostLicenseOrganizationRequestEntityTooLarge with default headers values

func (*PostLicenseOrganizationRequestEntityTooLarge) Error

func (*PostLicenseOrganizationRequestEntityTooLarge) GetPayload

func (*PostLicenseOrganizationRequestEntityTooLarge) IsClientError

IsClientError returns true when this post license organization request entity too large response has a 4xx status code

func (*PostLicenseOrganizationRequestEntityTooLarge) IsCode

IsCode returns true when this post license organization request entity too large response a status code equal to that given

func (*PostLicenseOrganizationRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post license organization request entity too large response has a 3xx status code

func (*PostLicenseOrganizationRequestEntityTooLarge) IsServerError

IsServerError returns true when this post license organization request entity too large response has a 5xx status code

func (*PostLicenseOrganizationRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post license organization request entity too large response has a 2xx status code

func (*PostLicenseOrganizationRequestEntityTooLarge) String

type PostLicenseOrganizationRequestTimeout

type PostLicenseOrganizationRequestTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseOrganizationRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostLicenseOrganizationRequestTimeout

func NewPostLicenseOrganizationRequestTimeout() *PostLicenseOrganizationRequestTimeout

NewPostLicenseOrganizationRequestTimeout creates a PostLicenseOrganizationRequestTimeout with default headers values

func (*PostLicenseOrganizationRequestTimeout) Error

func (*PostLicenseOrganizationRequestTimeout) GetPayload

func (*PostLicenseOrganizationRequestTimeout) IsClientError

func (o *PostLicenseOrganizationRequestTimeout) IsClientError() bool

IsClientError returns true when this post license organization request timeout response has a 4xx status code

func (*PostLicenseOrganizationRequestTimeout) IsCode

IsCode returns true when this post license organization request timeout response a status code equal to that given

func (*PostLicenseOrganizationRequestTimeout) IsRedirect

IsRedirect returns true when this post license organization request timeout response has a 3xx status code

func (*PostLicenseOrganizationRequestTimeout) IsServerError

func (o *PostLicenseOrganizationRequestTimeout) IsServerError() bool

IsServerError returns true when this post license organization request timeout response has a 5xx status code

func (*PostLicenseOrganizationRequestTimeout) IsSuccess

IsSuccess returns true when this post license organization request timeout response has a 2xx status code

func (*PostLicenseOrganizationRequestTimeout) String

type PostLicenseOrganizationServiceUnavailable

type PostLicenseOrganizationServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostLicenseOrganizationServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostLicenseOrganizationServiceUnavailable

func NewPostLicenseOrganizationServiceUnavailable() *PostLicenseOrganizationServiceUnavailable

NewPostLicenseOrganizationServiceUnavailable creates a PostLicenseOrganizationServiceUnavailable with default headers values

func (*PostLicenseOrganizationServiceUnavailable) Error

func (*PostLicenseOrganizationServiceUnavailable) GetPayload

func (*PostLicenseOrganizationServiceUnavailable) IsClientError

IsClientError returns true when this post license organization service unavailable response has a 4xx status code

func (*PostLicenseOrganizationServiceUnavailable) IsCode

IsCode returns true when this post license organization service unavailable response a status code equal to that given

func (*PostLicenseOrganizationServiceUnavailable) IsRedirect

IsRedirect returns true when this post license organization service unavailable response has a 3xx status code

func (*PostLicenseOrganizationServiceUnavailable) IsServerError

IsServerError returns true when this post license organization service unavailable response has a 5xx status code

func (*PostLicenseOrganizationServiceUnavailable) IsSuccess

IsSuccess returns true when this post license organization service unavailable response has a 2xx status code

func (*PostLicenseOrganizationServiceUnavailable) String

type PostLicenseOrganizationTooManyRequests

type PostLicenseOrganizationTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostLicenseOrganizationTooManyRequests

func NewPostLicenseOrganizationTooManyRequests() *PostLicenseOrganizationTooManyRequests

NewPostLicenseOrganizationTooManyRequests creates a PostLicenseOrganizationTooManyRequests with default headers values

func (*PostLicenseOrganizationTooManyRequests) Error

func (*PostLicenseOrganizationTooManyRequests) GetPayload

func (*PostLicenseOrganizationTooManyRequests) IsClientError

func (o *PostLicenseOrganizationTooManyRequests) IsClientError() bool

IsClientError returns true when this post license organization too many requests response has a 4xx status code

func (*PostLicenseOrganizationTooManyRequests) IsCode

IsCode returns true when this post license organization too many requests response a status code equal to that given

func (*PostLicenseOrganizationTooManyRequests) IsRedirect

IsRedirect returns true when this post license organization too many requests response has a 3xx status code

func (*PostLicenseOrganizationTooManyRequests) IsServerError

func (o *PostLicenseOrganizationTooManyRequests) IsServerError() bool

IsServerError returns true when this post license organization too many requests response has a 5xx status code

func (*PostLicenseOrganizationTooManyRequests) IsSuccess

IsSuccess returns true when this post license organization too many requests response has a 2xx status code

func (*PostLicenseOrganizationTooManyRequests) String

type PostLicenseOrganizationUnauthorized

type PostLicenseOrganizationUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostLicenseOrganizationUnauthorized

func NewPostLicenseOrganizationUnauthorized() *PostLicenseOrganizationUnauthorized

NewPostLicenseOrganizationUnauthorized creates a PostLicenseOrganizationUnauthorized with default headers values

func (*PostLicenseOrganizationUnauthorized) Error

func (*PostLicenseOrganizationUnauthorized) GetPayload

func (*PostLicenseOrganizationUnauthorized) IsClientError

func (o *PostLicenseOrganizationUnauthorized) IsClientError() bool

IsClientError returns true when this post license organization unauthorized response has a 4xx status code

func (*PostLicenseOrganizationUnauthorized) IsCode

IsCode returns true when this post license organization unauthorized response a status code equal to that given

func (*PostLicenseOrganizationUnauthorized) IsRedirect

func (o *PostLicenseOrganizationUnauthorized) IsRedirect() bool

IsRedirect returns true when this post license organization unauthorized response has a 3xx status code

func (*PostLicenseOrganizationUnauthorized) IsServerError

func (o *PostLicenseOrganizationUnauthorized) IsServerError() bool

IsServerError returns true when this post license organization unauthorized response has a 5xx status code

func (*PostLicenseOrganizationUnauthorized) IsSuccess

IsSuccess returns true when this post license organization unauthorized response has a 2xx status code

func (*PostLicenseOrganizationUnauthorized) String

type PostLicenseOrganizationUnsupportedMediaType

type PostLicenseOrganizationUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostLicenseOrganizationUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostLicenseOrganizationUnsupportedMediaType

func NewPostLicenseOrganizationUnsupportedMediaType() *PostLicenseOrganizationUnsupportedMediaType

NewPostLicenseOrganizationUnsupportedMediaType creates a PostLicenseOrganizationUnsupportedMediaType with default headers values

func (*PostLicenseOrganizationUnsupportedMediaType) Error

func (*PostLicenseOrganizationUnsupportedMediaType) GetPayload

func (*PostLicenseOrganizationUnsupportedMediaType) IsClientError

IsClientError returns true when this post license organization unsupported media type response has a 4xx status code

func (*PostLicenseOrganizationUnsupportedMediaType) IsCode

IsCode returns true when this post license organization unsupported media type response a status code equal to that given

func (*PostLicenseOrganizationUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post license organization unsupported media type response has a 3xx status code

func (*PostLicenseOrganizationUnsupportedMediaType) IsServerError

IsServerError returns true when this post license organization unsupported media type response has a 5xx status code

func (*PostLicenseOrganizationUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post license organization unsupported media type response has a 2xx status code

func (*PostLicenseOrganizationUnsupportedMediaType) String

type PostLicenseToggleBadRequest

type PostLicenseToggleBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostLicenseToggleBadRequest

func NewPostLicenseToggleBadRequest() *PostLicenseToggleBadRequest

NewPostLicenseToggleBadRequest creates a PostLicenseToggleBadRequest with default headers values

func (*PostLicenseToggleBadRequest) Error

func (*PostLicenseToggleBadRequest) GetPayload

func (o *PostLicenseToggleBadRequest) GetPayload() *models.ErrorBody

func (*PostLicenseToggleBadRequest) IsClientError

func (o *PostLicenseToggleBadRequest) IsClientError() bool

IsClientError returns true when this post license toggle bad request response has a 4xx status code

func (*PostLicenseToggleBadRequest) IsCode

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

IsCode returns true when this post license toggle bad request response a status code equal to that given

func (*PostLicenseToggleBadRequest) IsRedirect

func (o *PostLicenseToggleBadRequest) IsRedirect() bool

IsRedirect returns true when this post license toggle bad request response has a 3xx status code

func (*PostLicenseToggleBadRequest) IsServerError

func (o *PostLicenseToggleBadRequest) IsServerError() bool

IsServerError returns true when this post license toggle bad request response has a 5xx status code

func (*PostLicenseToggleBadRequest) IsSuccess

func (o *PostLicenseToggleBadRequest) IsSuccess() bool

IsSuccess returns true when this post license toggle bad request response has a 2xx status code

func (*PostLicenseToggleBadRequest) String

func (o *PostLicenseToggleBadRequest) String() string

type PostLicenseToggleForbidden

type PostLicenseToggleForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostLicenseToggleForbidden

func NewPostLicenseToggleForbidden() *PostLicenseToggleForbidden

NewPostLicenseToggleForbidden creates a PostLicenseToggleForbidden with default headers values

func (*PostLicenseToggleForbidden) Error

func (*PostLicenseToggleForbidden) GetPayload

func (o *PostLicenseToggleForbidden) GetPayload() *models.ErrorBody

func (*PostLicenseToggleForbidden) IsClientError

func (o *PostLicenseToggleForbidden) IsClientError() bool

IsClientError returns true when this post license toggle forbidden response has a 4xx status code

func (*PostLicenseToggleForbidden) IsCode

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

IsCode returns true when this post license toggle forbidden response a status code equal to that given

func (*PostLicenseToggleForbidden) IsRedirect

func (o *PostLicenseToggleForbidden) IsRedirect() bool

IsRedirect returns true when this post license toggle forbidden response has a 3xx status code

func (*PostLicenseToggleForbidden) IsServerError

func (o *PostLicenseToggleForbidden) IsServerError() bool

IsServerError returns true when this post license toggle forbidden response has a 5xx status code

func (*PostLicenseToggleForbidden) IsSuccess

func (o *PostLicenseToggleForbidden) IsSuccess() bool

IsSuccess returns true when this post license toggle forbidden response has a 2xx status code

func (*PostLicenseToggleForbidden) String

func (o *PostLicenseToggleForbidden) String() string

type PostLicenseToggleGatewayTimeout

type PostLicenseToggleGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseToggleGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostLicenseToggleGatewayTimeout

func NewPostLicenseToggleGatewayTimeout() *PostLicenseToggleGatewayTimeout

NewPostLicenseToggleGatewayTimeout creates a PostLicenseToggleGatewayTimeout with default headers values

func (*PostLicenseToggleGatewayTimeout) Error

func (*PostLicenseToggleGatewayTimeout) GetPayload

func (*PostLicenseToggleGatewayTimeout) IsClientError

func (o *PostLicenseToggleGatewayTimeout) IsClientError() bool

IsClientError returns true when this post license toggle gateway timeout response has a 4xx status code

func (*PostLicenseToggleGatewayTimeout) IsCode

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

IsCode returns true when this post license toggle gateway timeout response a status code equal to that given

func (*PostLicenseToggleGatewayTimeout) IsRedirect

func (o *PostLicenseToggleGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post license toggle gateway timeout response has a 3xx status code

func (*PostLicenseToggleGatewayTimeout) IsServerError

func (o *PostLicenseToggleGatewayTimeout) IsServerError() bool

IsServerError returns true when this post license toggle gateway timeout response has a 5xx status code

func (*PostLicenseToggleGatewayTimeout) IsSuccess

func (o *PostLicenseToggleGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post license toggle gateway timeout response has a 2xx status code

func (*PostLicenseToggleGatewayTimeout) String

type PostLicenseToggleInternalServerError

type PostLicenseToggleInternalServerError struct {
	Payload *models.ErrorBody
}

PostLicenseToggleInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostLicenseToggleInternalServerError

func NewPostLicenseToggleInternalServerError() *PostLicenseToggleInternalServerError

NewPostLicenseToggleInternalServerError creates a PostLicenseToggleInternalServerError with default headers values

func (*PostLicenseToggleInternalServerError) Error

func (*PostLicenseToggleInternalServerError) GetPayload

func (*PostLicenseToggleInternalServerError) IsClientError

func (o *PostLicenseToggleInternalServerError) IsClientError() bool

IsClientError returns true when this post license toggle internal server error response has a 4xx status code

func (*PostLicenseToggleInternalServerError) IsCode

IsCode returns true when this post license toggle internal server error response a status code equal to that given

func (*PostLicenseToggleInternalServerError) IsRedirect

IsRedirect returns true when this post license toggle internal server error response has a 3xx status code

func (*PostLicenseToggleInternalServerError) IsServerError

func (o *PostLicenseToggleInternalServerError) IsServerError() bool

IsServerError returns true when this post license toggle internal server error response has a 5xx status code

func (*PostLicenseToggleInternalServerError) IsSuccess

IsSuccess returns true when this post license toggle internal server error response has a 2xx status code

func (*PostLicenseToggleInternalServerError) String

type PostLicenseToggleNotFound

type PostLicenseToggleNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostLicenseToggleNotFound

func NewPostLicenseToggleNotFound() *PostLicenseToggleNotFound

NewPostLicenseToggleNotFound creates a PostLicenseToggleNotFound with default headers values

func (*PostLicenseToggleNotFound) Error

func (o *PostLicenseToggleNotFound) Error() string

func (*PostLicenseToggleNotFound) GetPayload

func (o *PostLicenseToggleNotFound) GetPayload() *models.ErrorBody

func (*PostLicenseToggleNotFound) IsClientError

func (o *PostLicenseToggleNotFound) IsClientError() bool

IsClientError returns true when this post license toggle not found response has a 4xx status code

func (*PostLicenseToggleNotFound) IsCode

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

IsCode returns true when this post license toggle not found response a status code equal to that given

func (*PostLicenseToggleNotFound) IsRedirect

func (o *PostLicenseToggleNotFound) IsRedirect() bool

IsRedirect returns true when this post license toggle not found response has a 3xx status code

func (*PostLicenseToggleNotFound) IsServerError

func (o *PostLicenseToggleNotFound) IsServerError() bool

IsServerError returns true when this post license toggle not found response has a 5xx status code

func (*PostLicenseToggleNotFound) IsSuccess

func (o *PostLicenseToggleNotFound) IsSuccess() bool

IsSuccess returns true when this post license toggle not found response has a 2xx status code

func (*PostLicenseToggleNotFound) String

func (o *PostLicenseToggleNotFound) String() string

type PostLicenseToggleOK

type PostLicenseToggleOK struct {
	Payload *models.LicenseOrgToggle
}

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

successful operation

func NewPostLicenseToggleOK

func NewPostLicenseToggleOK() *PostLicenseToggleOK

NewPostLicenseToggleOK creates a PostLicenseToggleOK with default headers values

func (*PostLicenseToggleOK) Error

func (o *PostLicenseToggleOK) Error() string

func (*PostLicenseToggleOK) GetPayload

func (o *PostLicenseToggleOK) GetPayload() *models.LicenseOrgToggle

func (*PostLicenseToggleOK) IsClientError

func (o *PostLicenseToggleOK) IsClientError() bool

IsClientError returns true when this post license toggle o k response has a 4xx status code

func (*PostLicenseToggleOK) IsCode

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

IsCode returns true when this post license toggle o k response a status code equal to that given

func (*PostLicenseToggleOK) IsRedirect

func (o *PostLicenseToggleOK) IsRedirect() bool

IsRedirect returns true when this post license toggle o k response has a 3xx status code

func (*PostLicenseToggleOK) IsServerError

func (o *PostLicenseToggleOK) IsServerError() bool

IsServerError returns true when this post license toggle o k response has a 5xx status code

func (*PostLicenseToggleOK) IsSuccess

func (o *PostLicenseToggleOK) IsSuccess() bool

IsSuccess returns true when this post license toggle o k response has a 2xx status code

func (*PostLicenseToggleOK) String

func (o *PostLicenseToggleOK) String() string

type PostLicenseToggleParams

type PostLicenseToggleParams struct {

	/* FeatureName.

	   featureName
	*/
	FeatureName string

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

PostLicenseToggleParams contains all the parameters to send to the API endpoint

for the post license toggle operation.

Typically these are written to a http.Request.

func NewPostLicenseToggleParams

func NewPostLicenseToggleParams() *PostLicenseToggleParams

NewPostLicenseToggleParams creates a new PostLicenseToggleParams 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 NewPostLicenseToggleParamsWithContext

func NewPostLicenseToggleParamsWithContext(ctx context.Context) *PostLicenseToggleParams

NewPostLicenseToggleParamsWithContext creates a new PostLicenseToggleParams object with the ability to set a context for a request.

func NewPostLicenseToggleParamsWithHTTPClient

func NewPostLicenseToggleParamsWithHTTPClient(client *http.Client) *PostLicenseToggleParams

NewPostLicenseToggleParamsWithHTTPClient creates a new PostLicenseToggleParams object with the ability to set a custom HTTPClient for a request.

func NewPostLicenseToggleParamsWithTimeout

func NewPostLicenseToggleParamsWithTimeout(timeout time.Duration) *PostLicenseToggleParams

NewPostLicenseToggleParamsWithTimeout creates a new PostLicenseToggleParams object with the ability to set a timeout on a request.

func (*PostLicenseToggleParams) SetContext

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

SetContext adds the context to the post license toggle params

func (*PostLicenseToggleParams) SetDefaults

func (o *PostLicenseToggleParams) SetDefaults()

SetDefaults hydrates default values in the post license toggle params (not the query body).

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

func (*PostLicenseToggleParams) SetFeatureName

func (o *PostLicenseToggleParams) SetFeatureName(featureName string)

SetFeatureName adds the featureName to the post license toggle params

func (*PostLicenseToggleParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post license toggle params

func (*PostLicenseToggleParams) SetTimeout

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

SetTimeout adds the timeout to the post license toggle params

func (*PostLicenseToggleParams) WithContext

WithContext adds the context to the post license toggle params

func (*PostLicenseToggleParams) WithDefaults

WithDefaults hydrates default values in the post license toggle params (not the query body).

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

func (*PostLicenseToggleParams) WithFeatureName

func (o *PostLicenseToggleParams) WithFeatureName(featureName string) *PostLicenseToggleParams

WithFeatureName adds the featureName to the post license toggle params

func (*PostLicenseToggleParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post license toggle params

func (*PostLicenseToggleParams) WithTimeout

WithTimeout adds the timeout to the post license toggle params

func (*PostLicenseToggleParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostLicenseToggleReader

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

PostLicenseToggleReader is a Reader for the PostLicenseToggle structure.

func (*PostLicenseToggleReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostLicenseToggleRequestEntityTooLarge

type PostLicenseToggleRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostLicenseToggleRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostLicenseToggleRequestEntityTooLarge

func NewPostLicenseToggleRequestEntityTooLarge() *PostLicenseToggleRequestEntityTooLarge

NewPostLicenseToggleRequestEntityTooLarge creates a PostLicenseToggleRequestEntityTooLarge with default headers values

func (*PostLicenseToggleRequestEntityTooLarge) Error

func (*PostLicenseToggleRequestEntityTooLarge) GetPayload

func (*PostLicenseToggleRequestEntityTooLarge) IsClientError

func (o *PostLicenseToggleRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post license toggle request entity too large response has a 4xx status code

func (*PostLicenseToggleRequestEntityTooLarge) IsCode

IsCode returns true when this post license toggle request entity too large response a status code equal to that given

func (*PostLicenseToggleRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post license toggle request entity too large response has a 3xx status code

func (*PostLicenseToggleRequestEntityTooLarge) IsServerError

func (o *PostLicenseToggleRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post license toggle request entity too large response has a 5xx status code

func (*PostLicenseToggleRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post license toggle request entity too large response has a 2xx status code

func (*PostLicenseToggleRequestEntityTooLarge) String

type PostLicenseToggleRequestTimeout

type PostLicenseToggleRequestTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseToggleRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostLicenseToggleRequestTimeout

func NewPostLicenseToggleRequestTimeout() *PostLicenseToggleRequestTimeout

NewPostLicenseToggleRequestTimeout creates a PostLicenseToggleRequestTimeout with default headers values

func (*PostLicenseToggleRequestTimeout) Error

func (*PostLicenseToggleRequestTimeout) GetPayload

func (*PostLicenseToggleRequestTimeout) IsClientError

func (o *PostLicenseToggleRequestTimeout) IsClientError() bool

IsClientError returns true when this post license toggle request timeout response has a 4xx status code

func (*PostLicenseToggleRequestTimeout) IsCode

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

IsCode returns true when this post license toggle request timeout response a status code equal to that given

func (*PostLicenseToggleRequestTimeout) IsRedirect

func (o *PostLicenseToggleRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post license toggle request timeout response has a 3xx status code

func (*PostLicenseToggleRequestTimeout) IsServerError

func (o *PostLicenseToggleRequestTimeout) IsServerError() bool

IsServerError returns true when this post license toggle request timeout response has a 5xx status code

func (*PostLicenseToggleRequestTimeout) IsSuccess

func (o *PostLicenseToggleRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post license toggle request timeout response has a 2xx status code

func (*PostLicenseToggleRequestTimeout) String

type PostLicenseToggleServiceUnavailable

type PostLicenseToggleServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostLicenseToggleServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostLicenseToggleServiceUnavailable

func NewPostLicenseToggleServiceUnavailable() *PostLicenseToggleServiceUnavailable

NewPostLicenseToggleServiceUnavailable creates a PostLicenseToggleServiceUnavailable with default headers values

func (*PostLicenseToggleServiceUnavailable) Error

func (*PostLicenseToggleServiceUnavailable) GetPayload

func (*PostLicenseToggleServiceUnavailable) IsClientError

func (o *PostLicenseToggleServiceUnavailable) IsClientError() bool

IsClientError returns true when this post license toggle service unavailable response has a 4xx status code

func (*PostLicenseToggleServiceUnavailable) IsCode

IsCode returns true when this post license toggle service unavailable response a status code equal to that given

func (*PostLicenseToggleServiceUnavailable) IsRedirect

func (o *PostLicenseToggleServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this post license toggle service unavailable response has a 3xx status code

func (*PostLicenseToggleServiceUnavailable) IsServerError

func (o *PostLicenseToggleServiceUnavailable) IsServerError() bool

IsServerError returns true when this post license toggle service unavailable response has a 5xx status code

func (*PostLicenseToggleServiceUnavailable) IsSuccess

IsSuccess returns true when this post license toggle service unavailable response has a 2xx status code

func (*PostLicenseToggleServiceUnavailable) String

type PostLicenseToggleTooManyRequests

type PostLicenseToggleTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostLicenseToggleTooManyRequests

func NewPostLicenseToggleTooManyRequests() *PostLicenseToggleTooManyRequests

NewPostLicenseToggleTooManyRequests creates a PostLicenseToggleTooManyRequests with default headers values

func (*PostLicenseToggleTooManyRequests) Error

func (*PostLicenseToggleTooManyRequests) GetPayload

func (*PostLicenseToggleTooManyRequests) IsClientError

func (o *PostLicenseToggleTooManyRequests) IsClientError() bool

IsClientError returns true when this post license toggle too many requests response has a 4xx status code

func (*PostLicenseToggleTooManyRequests) IsCode

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

IsCode returns true when this post license toggle too many requests response a status code equal to that given

func (*PostLicenseToggleTooManyRequests) IsRedirect

func (o *PostLicenseToggleTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post license toggle too many requests response has a 3xx status code

func (*PostLicenseToggleTooManyRequests) IsServerError

func (o *PostLicenseToggleTooManyRequests) IsServerError() bool

IsServerError returns true when this post license toggle too many requests response has a 5xx status code

func (*PostLicenseToggleTooManyRequests) IsSuccess

func (o *PostLicenseToggleTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post license toggle too many requests response has a 2xx status code

func (*PostLicenseToggleTooManyRequests) String

type PostLicenseToggleUnauthorized

type PostLicenseToggleUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostLicenseToggleUnauthorized

func NewPostLicenseToggleUnauthorized() *PostLicenseToggleUnauthorized

NewPostLicenseToggleUnauthorized creates a PostLicenseToggleUnauthorized with default headers values

func (*PostLicenseToggleUnauthorized) Error

func (*PostLicenseToggleUnauthorized) GetPayload

func (*PostLicenseToggleUnauthorized) IsClientError

func (o *PostLicenseToggleUnauthorized) IsClientError() bool

IsClientError returns true when this post license toggle unauthorized response has a 4xx status code

func (*PostLicenseToggleUnauthorized) IsCode

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

IsCode returns true when this post license toggle unauthorized response a status code equal to that given

func (*PostLicenseToggleUnauthorized) IsRedirect

func (o *PostLicenseToggleUnauthorized) IsRedirect() bool

IsRedirect returns true when this post license toggle unauthorized response has a 3xx status code

func (*PostLicenseToggleUnauthorized) IsServerError

func (o *PostLicenseToggleUnauthorized) IsServerError() bool

IsServerError returns true when this post license toggle unauthorized response has a 5xx status code

func (*PostLicenseToggleUnauthorized) IsSuccess

func (o *PostLicenseToggleUnauthorized) IsSuccess() bool

IsSuccess returns true when this post license toggle unauthorized response has a 2xx status code

func (*PostLicenseToggleUnauthorized) String

type PostLicenseToggleUnsupportedMediaType

type PostLicenseToggleUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostLicenseToggleUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostLicenseToggleUnsupportedMediaType

func NewPostLicenseToggleUnsupportedMediaType() *PostLicenseToggleUnsupportedMediaType

NewPostLicenseToggleUnsupportedMediaType creates a PostLicenseToggleUnsupportedMediaType with default headers values

func (*PostLicenseToggleUnsupportedMediaType) Error

func (*PostLicenseToggleUnsupportedMediaType) GetPayload

func (*PostLicenseToggleUnsupportedMediaType) IsClientError

func (o *PostLicenseToggleUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post license toggle unsupported media type response has a 4xx status code

func (*PostLicenseToggleUnsupportedMediaType) IsCode

IsCode returns true when this post license toggle unsupported media type response a status code equal to that given

func (*PostLicenseToggleUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post license toggle unsupported media type response has a 3xx status code

func (*PostLicenseToggleUnsupportedMediaType) IsServerError

func (o *PostLicenseToggleUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post license toggle unsupported media type response has a 5xx status code

func (*PostLicenseToggleUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post license toggle unsupported media type response has a 2xx status code

func (*PostLicenseToggleUnsupportedMediaType) String

type PostLicenseUsersBadRequest

type PostLicenseUsersBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostLicenseUsersBadRequest

func NewPostLicenseUsersBadRequest() *PostLicenseUsersBadRequest

NewPostLicenseUsersBadRequest creates a PostLicenseUsersBadRequest with default headers values

func (*PostLicenseUsersBadRequest) Error

func (*PostLicenseUsersBadRequest) GetPayload

func (o *PostLicenseUsersBadRequest) GetPayload() *models.ErrorBody

func (*PostLicenseUsersBadRequest) IsClientError

func (o *PostLicenseUsersBadRequest) IsClientError() bool

IsClientError returns true when this post license users bad request response has a 4xx status code

func (*PostLicenseUsersBadRequest) IsCode

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

IsCode returns true when this post license users bad request response a status code equal to that given

func (*PostLicenseUsersBadRequest) IsRedirect

func (o *PostLicenseUsersBadRequest) IsRedirect() bool

IsRedirect returns true when this post license users bad request response has a 3xx status code

func (*PostLicenseUsersBadRequest) IsServerError

func (o *PostLicenseUsersBadRequest) IsServerError() bool

IsServerError returns true when this post license users bad request response has a 5xx status code

func (*PostLicenseUsersBadRequest) IsSuccess

func (o *PostLicenseUsersBadRequest) IsSuccess() bool

IsSuccess returns true when this post license users bad request response has a 2xx status code

func (*PostLicenseUsersBadRequest) String

func (o *PostLicenseUsersBadRequest) String() string

type PostLicenseUsersForbidden

type PostLicenseUsersForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostLicenseUsersForbidden

func NewPostLicenseUsersForbidden() *PostLicenseUsersForbidden

NewPostLicenseUsersForbidden creates a PostLicenseUsersForbidden with default headers values

func (*PostLicenseUsersForbidden) Error

func (o *PostLicenseUsersForbidden) Error() string

func (*PostLicenseUsersForbidden) GetPayload

func (o *PostLicenseUsersForbidden) GetPayload() *models.ErrorBody

func (*PostLicenseUsersForbidden) IsClientError

func (o *PostLicenseUsersForbidden) IsClientError() bool

IsClientError returns true when this post license users forbidden response has a 4xx status code

func (*PostLicenseUsersForbidden) IsCode

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

IsCode returns true when this post license users forbidden response a status code equal to that given

func (*PostLicenseUsersForbidden) IsRedirect

func (o *PostLicenseUsersForbidden) IsRedirect() bool

IsRedirect returns true when this post license users forbidden response has a 3xx status code

func (*PostLicenseUsersForbidden) IsServerError

func (o *PostLicenseUsersForbidden) IsServerError() bool

IsServerError returns true when this post license users forbidden response has a 5xx status code

func (*PostLicenseUsersForbidden) IsSuccess

func (o *PostLicenseUsersForbidden) IsSuccess() bool

IsSuccess returns true when this post license users forbidden response has a 2xx status code

func (*PostLicenseUsersForbidden) String

func (o *PostLicenseUsersForbidden) String() string

type PostLicenseUsersGatewayTimeout

type PostLicenseUsersGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseUsersGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostLicenseUsersGatewayTimeout

func NewPostLicenseUsersGatewayTimeout() *PostLicenseUsersGatewayTimeout

NewPostLicenseUsersGatewayTimeout creates a PostLicenseUsersGatewayTimeout with default headers values

func (*PostLicenseUsersGatewayTimeout) Error

func (*PostLicenseUsersGatewayTimeout) GetPayload

func (*PostLicenseUsersGatewayTimeout) IsClientError

func (o *PostLicenseUsersGatewayTimeout) IsClientError() bool

IsClientError returns true when this post license users gateway timeout response has a 4xx status code

func (*PostLicenseUsersGatewayTimeout) IsCode

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

IsCode returns true when this post license users gateway timeout response a status code equal to that given

func (*PostLicenseUsersGatewayTimeout) IsRedirect

func (o *PostLicenseUsersGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post license users gateway timeout response has a 3xx status code

func (*PostLicenseUsersGatewayTimeout) IsServerError

func (o *PostLicenseUsersGatewayTimeout) IsServerError() bool

IsServerError returns true when this post license users gateway timeout response has a 5xx status code

func (*PostLicenseUsersGatewayTimeout) IsSuccess

func (o *PostLicenseUsersGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post license users gateway timeout response has a 2xx status code

func (*PostLicenseUsersGatewayTimeout) String

type PostLicenseUsersInternalServerError

type PostLicenseUsersInternalServerError struct {
	Payload *models.ErrorBody
}

PostLicenseUsersInternalServerError describes a response with status code 500, with default header values.

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostLicenseUsersInternalServerError

func NewPostLicenseUsersInternalServerError() *PostLicenseUsersInternalServerError

NewPostLicenseUsersInternalServerError creates a PostLicenseUsersInternalServerError with default headers values

func (*PostLicenseUsersInternalServerError) Error

func (*PostLicenseUsersInternalServerError) GetPayload

func (*PostLicenseUsersInternalServerError) IsClientError

func (o *PostLicenseUsersInternalServerError) IsClientError() bool

IsClientError returns true when this post license users internal server error response has a 4xx status code

func (*PostLicenseUsersInternalServerError) IsCode

IsCode returns true when this post license users internal server error response a status code equal to that given

func (*PostLicenseUsersInternalServerError) IsRedirect

func (o *PostLicenseUsersInternalServerError) IsRedirect() bool

IsRedirect returns true when this post license users internal server error response has a 3xx status code

func (*PostLicenseUsersInternalServerError) IsServerError

func (o *PostLicenseUsersInternalServerError) IsServerError() bool

IsServerError returns true when this post license users internal server error response has a 5xx status code

func (*PostLicenseUsersInternalServerError) IsSuccess

IsSuccess returns true when this post license users internal server error response has a 2xx status code

func (*PostLicenseUsersInternalServerError) String

type PostLicenseUsersNotFound

type PostLicenseUsersNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostLicenseUsersNotFound

func NewPostLicenseUsersNotFound() *PostLicenseUsersNotFound

NewPostLicenseUsersNotFound creates a PostLicenseUsersNotFound with default headers values

func (*PostLicenseUsersNotFound) Error

func (o *PostLicenseUsersNotFound) Error() string

func (*PostLicenseUsersNotFound) GetPayload

func (o *PostLicenseUsersNotFound) GetPayload() *models.ErrorBody

func (*PostLicenseUsersNotFound) IsClientError

func (o *PostLicenseUsersNotFound) IsClientError() bool

IsClientError returns true when this post license users not found response has a 4xx status code

func (*PostLicenseUsersNotFound) IsCode

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

IsCode returns true when this post license users not found response a status code equal to that given

func (*PostLicenseUsersNotFound) IsRedirect

func (o *PostLicenseUsersNotFound) IsRedirect() bool

IsRedirect returns true when this post license users not found response has a 3xx status code

func (*PostLicenseUsersNotFound) IsServerError

func (o *PostLicenseUsersNotFound) IsServerError() bool

IsServerError returns true when this post license users not found response has a 5xx status code

func (*PostLicenseUsersNotFound) IsSuccess

func (o *PostLicenseUsersNotFound) IsSuccess() bool

IsSuccess returns true when this post license users not found response has a 2xx status code

func (*PostLicenseUsersNotFound) String

func (o *PostLicenseUsersNotFound) String() string

type PostLicenseUsersOK

type PostLicenseUsersOK struct {
	Payload map[string]interface{}
}

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

successful operation

func NewPostLicenseUsersOK

func NewPostLicenseUsersOK() *PostLicenseUsersOK

NewPostLicenseUsersOK creates a PostLicenseUsersOK with default headers values

func (*PostLicenseUsersOK) Error

func (o *PostLicenseUsersOK) Error() string

func (*PostLicenseUsersOK) GetPayload

func (o *PostLicenseUsersOK) GetPayload() map[string]interface{}

func (*PostLicenseUsersOK) IsClientError

func (o *PostLicenseUsersOK) IsClientError() bool

IsClientError returns true when this post license users o k response has a 4xx status code

func (*PostLicenseUsersOK) IsCode

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

IsCode returns true when this post license users o k response a status code equal to that given

func (*PostLicenseUsersOK) IsRedirect

func (o *PostLicenseUsersOK) IsRedirect() bool

IsRedirect returns true when this post license users o k response has a 3xx status code

func (*PostLicenseUsersOK) IsServerError

func (o *PostLicenseUsersOK) IsServerError() bool

IsServerError returns true when this post license users o k response has a 5xx status code

func (*PostLicenseUsersOK) IsSuccess

func (o *PostLicenseUsersOK) IsSuccess() bool

IsSuccess returns true when this post license users o k response has a 2xx status code

func (*PostLicenseUsersOK) String

func (o *PostLicenseUsersOK) String() string

type PostLicenseUsersParams

type PostLicenseUsersParams struct {

	/* Body.

	   The user IDs to fetch.
	*/
	Body []string

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

PostLicenseUsersParams contains all the parameters to send to the API endpoint

for the post license users operation.

Typically these are written to a http.Request.

func NewPostLicenseUsersParams

func NewPostLicenseUsersParams() *PostLicenseUsersParams

NewPostLicenseUsersParams creates a new PostLicenseUsersParams 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 NewPostLicenseUsersParamsWithContext

func NewPostLicenseUsersParamsWithContext(ctx context.Context) *PostLicenseUsersParams

NewPostLicenseUsersParamsWithContext creates a new PostLicenseUsersParams object with the ability to set a context for a request.

func NewPostLicenseUsersParamsWithHTTPClient

func NewPostLicenseUsersParamsWithHTTPClient(client *http.Client) *PostLicenseUsersParams

NewPostLicenseUsersParamsWithHTTPClient creates a new PostLicenseUsersParams object with the ability to set a custom HTTPClient for a request.

func NewPostLicenseUsersParamsWithTimeout

func NewPostLicenseUsersParamsWithTimeout(timeout time.Duration) *PostLicenseUsersParams

NewPostLicenseUsersParamsWithTimeout creates a new PostLicenseUsersParams object with the ability to set a timeout on a request.

func (*PostLicenseUsersParams) SetBody

func (o *PostLicenseUsersParams) SetBody(body []string)

SetBody adds the body to the post license users params

func (*PostLicenseUsersParams) SetContext

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

SetContext adds the context to the post license users params

func (*PostLicenseUsersParams) SetDefaults

func (o *PostLicenseUsersParams) SetDefaults()

SetDefaults hydrates default values in the post license users params (not the query body).

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

func (*PostLicenseUsersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post license users params

func (*PostLicenseUsersParams) SetTimeout

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

SetTimeout adds the timeout to the post license users params

func (*PostLicenseUsersParams) WithBody

WithBody adds the body to the post license users params

func (*PostLicenseUsersParams) WithContext

WithContext adds the context to the post license users params

func (*PostLicenseUsersParams) WithDefaults

WithDefaults hydrates default values in the post license users params (not the query body).

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

func (*PostLicenseUsersParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post license users params

func (*PostLicenseUsersParams) WithTimeout

WithTimeout adds the timeout to the post license users params

func (*PostLicenseUsersParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostLicenseUsersReader

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

PostLicenseUsersReader is a Reader for the PostLicenseUsers structure.

func (*PostLicenseUsersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostLicenseUsersRequestEntityTooLarge

type PostLicenseUsersRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostLicenseUsersRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostLicenseUsersRequestEntityTooLarge

func NewPostLicenseUsersRequestEntityTooLarge() *PostLicenseUsersRequestEntityTooLarge

NewPostLicenseUsersRequestEntityTooLarge creates a PostLicenseUsersRequestEntityTooLarge with default headers values

func (*PostLicenseUsersRequestEntityTooLarge) Error

func (*PostLicenseUsersRequestEntityTooLarge) GetPayload

func (*PostLicenseUsersRequestEntityTooLarge) IsClientError

func (o *PostLicenseUsersRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post license users request entity too large response has a 4xx status code

func (*PostLicenseUsersRequestEntityTooLarge) IsCode

IsCode returns true when this post license users request entity too large response a status code equal to that given

func (*PostLicenseUsersRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post license users request entity too large response has a 3xx status code

func (*PostLicenseUsersRequestEntityTooLarge) IsServerError

func (o *PostLicenseUsersRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post license users request entity too large response has a 5xx status code

func (*PostLicenseUsersRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post license users request entity too large response has a 2xx status code

func (*PostLicenseUsersRequestEntityTooLarge) String

type PostLicenseUsersRequestTimeout

type PostLicenseUsersRequestTimeout struct {
	Payload *models.ErrorBody
}

PostLicenseUsersRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostLicenseUsersRequestTimeout

func NewPostLicenseUsersRequestTimeout() *PostLicenseUsersRequestTimeout

NewPostLicenseUsersRequestTimeout creates a PostLicenseUsersRequestTimeout with default headers values

func (*PostLicenseUsersRequestTimeout) Error

func (*PostLicenseUsersRequestTimeout) GetPayload

func (*PostLicenseUsersRequestTimeout) IsClientError

func (o *PostLicenseUsersRequestTimeout) IsClientError() bool

IsClientError returns true when this post license users request timeout response has a 4xx status code

func (*PostLicenseUsersRequestTimeout) IsCode

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

IsCode returns true when this post license users request timeout response a status code equal to that given

func (*PostLicenseUsersRequestTimeout) IsRedirect

func (o *PostLicenseUsersRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post license users request timeout response has a 3xx status code

func (*PostLicenseUsersRequestTimeout) IsServerError

func (o *PostLicenseUsersRequestTimeout) IsServerError() bool

IsServerError returns true when this post license users request timeout response has a 5xx status code

func (*PostLicenseUsersRequestTimeout) IsSuccess

func (o *PostLicenseUsersRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post license users request timeout response has a 2xx status code

func (*PostLicenseUsersRequestTimeout) String

type PostLicenseUsersServiceUnavailable

type PostLicenseUsersServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostLicenseUsersServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostLicenseUsersServiceUnavailable

func NewPostLicenseUsersServiceUnavailable() *PostLicenseUsersServiceUnavailable

NewPostLicenseUsersServiceUnavailable creates a PostLicenseUsersServiceUnavailable with default headers values

func (*PostLicenseUsersServiceUnavailable) Error

func (*PostLicenseUsersServiceUnavailable) GetPayload

func (*PostLicenseUsersServiceUnavailable) IsClientError

func (o *PostLicenseUsersServiceUnavailable) IsClientError() bool

IsClientError returns true when this post license users service unavailable response has a 4xx status code

func (*PostLicenseUsersServiceUnavailable) IsCode

IsCode returns true when this post license users service unavailable response a status code equal to that given

func (*PostLicenseUsersServiceUnavailable) IsRedirect

func (o *PostLicenseUsersServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this post license users service unavailable response has a 3xx status code

func (*PostLicenseUsersServiceUnavailable) IsServerError

func (o *PostLicenseUsersServiceUnavailable) IsServerError() bool

IsServerError returns true when this post license users service unavailable response has a 5xx status code

func (*PostLicenseUsersServiceUnavailable) IsSuccess

IsSuccess returns true when this post license users service unavailable response has a 2xx status code

func (*PostLicenseUsersServiceUnavailable) String

type PostLicenseUsersTooManyRequests

type PostLicenseUsersTooManyRequests struct {
	Payload *models.ErrorBody
}

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

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostLicenseUsersTooManyRequests

func NewPostLicenseUsersTooManyRequests() *PostLicenseUsersTooManyRequests

NewPostLicenseUsersTooManyRequests creates a PostLicenseUsersTooManyRequests with default headers values

func (*PostLicenseUsersTooManyRequests) Error

func (*PostLicenseUsersTooManyRequests) GetPayload

func (*PostLicenseUsersTooManyRequests) IsClientError

func (o *PostLicenseUsersTooManyRequests) IsClientError() bool

IsClientError returns true when this post license users too many requests response has a 4xx status code

func (*PostLicenseUsersTooManyRequests) IsCode

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

IsCode returns true when this post license users too many requests response a status code equal to that given

func (*PostLicenseUsersTooManyRequests) IsRedirect

func (o *PostLicenseUsersTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post license users too many requests response has a 3xx status code

func (*PostLicenseUsersTooManyRequests) IsServerError

func (o *PostLicenseUsersTooManyRequests) IsServerError() bool

IsServerError returns true when this post license users too many requests response has a 5xx status code

func (*PostLicenseUsersTooManyRequests) IsSuccess

func (o *PostLicenseUsersTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post license users too many requests response has a 2xx status code

func (*PostLicenseUsersTooManyRequests) String

type PostLicenseUsersUnauthorized

type PostLicenseUsersUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostLicenseUsersUnauthorized

func NewPostLicenseUsersUnauthorized() *PostLicenseUsersUnauthorized

NewPostLicenseUsersUnauthorized creates a PostLicenseUsersUnauthorized with default headers values

func (*PostLicenseUsersUnauthorized) Error

func (*PostLicenseUsersUnauthorized) GetPayload

func (*PostLicenseUsersUnauthorized) IsClientError

func (o *PostLicenseUsersUnauthorized) IsClientError() bool

IsClientError returns true when this post license users unauthorized response has a 4xx status code

func (*PostLicenseUsersUnauthorized) IsCode

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

IsCode returns true when this post license users unauthorized response a status code equal to that given

func (*PostLicenseUsersUnauthorized) IsRedirect

func (o *PostLicenseUsersUnauthorized) IsRedirect() bool

IsRedirect returns true when this post license users unauthorized response has a 3xx status code

func (*PostLicenseUsersUnauthorized) IsServerError

func (o *PostLicenseUsersUnauthorized) IsServerError() bool

IsServerError returns true when this post license users unauthorized response has a 5xx status code

func (*PostLicenseUsersUnauthorized) IsSuccess

func (o *PostLicenseUsersUnauthorized) IsSuccess() bool

IsSuccess returns true when this post license users unauthorized response has a 2xx status code

func (*PostLicenseUsersUnauthorized) String

type PostLicenseUsersUnsupportedMediaType

type PostLicenseUsersUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostLicenseUsersUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostLicenseUsersUnsupportedMediaType

func NewPostLicenseUsersUnsupportedMediaType() *PostLicenseUsersUnsupportedMediaType

NewPostLicenseUsersUnsupportedMediaType creates a PostLicenseUsersUnsupportedMediaType with default headers values

func (*PostLicenseUsersUnsupportedMediaType) Error

func (*PostLicenseUsersUnsupportedMediaType) GetPayload

func (*PostLicenseUsersUnsupportedMediaType) IsClientError

func (o *PostLicenseUsersUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post license users unsupported media type response has a 4xx status code

func (*PostLicenseUsersUnsupportedMediaType) IsCode

IsCode returns true when this post license users unsupported media type response a status code equal to that given

func (*PostLicenseUsersUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post license users unsupported media type response has a 3xx status code

func (*PostLicenseUsersUnsupportedMediaType) IsServerError

func (o *PostLicenseUsersUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post license users unsupported media type response has a 5xx status code

func (*PostLicenseUsersUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post license users unsupported media type response has a 2xx status code

func (*PostLicenseUsersUnsupportedMediaType) String

Jump to

Keyboard shortcuts

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