access

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Mar 8, 2024 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for access API

func (*Client) DeleteAccessApikeyNameorid

func (a *Client) DeleteAccessApikeyNameorid(params *DeleteAccessApikeyNameoridParams, opts ...ClientOption) (*DeleteAccessApikeyNameoridOK, error)

DeleteAccessApikeyNameorid Deletes an API Key given its `name` or `id`. The API Key must be part of the organization that the current session is scoped to.

func (*Client) DeleteAccessInviteOrganization

func (a *Client) DeleteAccessInviteOrganization(params *DeleteAccessInviteOrganizationParams, opts ...ClientOption) (*DeleteAccessInviteOrganizationOK, error)

DeleteAccessInviteOrganization Declines an Organization Invite given its `organization`.

func (*Client) DeleteAccessOrganizationInviteEmail

func (a *Client) DeleteAccessOrganizationInviteEmail(params *DeleteAccessOrganizationInviteEmailParams, opts ...ClientOption) (*DeleteAccessOrganizationInviteEmailOK, error)

DeleteAccessOrganizationInviteEmail Deletes an Organization Invite given its `email`. The current session must be scoped to the Organization.

func (*Client) DeleteAccessOrganizationName

func (a *Client) DeleteAccessOrganizationName(params *DeleteAccessOrganizationNameParams, opts ...ClientOption) (*DeleteAccessOrganizationNameOK, error)

DeleteAccessOrganizationName Deletes an Organization given its `name`. The user must be a member of the Organization.

func (*Client) GetAccessApikey

func (a *Client) GetAccessApikey(params *GetAccessApikeyParams, opts ...ClientOption) (*GetAccessApikeyOK, error)

GetAccessApikey Lists all the API Keys for the authenticated user. Only the API Keys for the organization that the current session is scoped to will be returned.

func (*Client) GetAccessApikeyNameorid

func (a *Client) GetAccessApikeyNameorid(params *GetAccessApikeyNameoridParams, opts ...ClientOption) (*GetAccessApikeyNameoridOK, error)

GetAccessApikeyNameorid Gets information about a specific API Key given its `name` or `id`. The API Key must be part of the organization that the current session is scoped to.

func (*Client) GetAccessInvite

func (a *Client) GetAccessInvite(params *GetAccessInviteParams, opts ...ClientOption) (*GetAccessInviteOK, error)

GetAccessInvite Lists all the Organization Invites for the authenticated user.

func (*Client) GetAccessOrganization

func (a *Client) GetAccessOrganization(params *GetAccessOrganizationParams, opts ...ClientOption) (*GetAccessOrganizationOK, error)

GetAccessOrganization Lists all the Organizations for the authenticated user. Only the Organizations that the user is a member of will be returned.

func (*Client) GetAccessOrganizationInvite

func (a *Client) GetAccessOrganizationInvite(params *GetAccessOrganizationInviteParams, opts ...ClientOption) (*GetAccessOrganizationInviteOK, error)

GetAccessOrganizationInvite Lists all the Organization Invites for the authenticated user. Only the Organizations Invites for the Organization the session is scoped to will be returned.

func (*Client) PostAccessApikey

func (a *Client) PostAccessApikey(params *PostAccessApikeyParams, opts ...ClientOption) (*PostAccessApikeyOK, error)

PostAccessApikey Creates a new API Key with the given `name` scoped to all the organizations the user is a member or owner of. If the user's session is already tied to an organization, the new API Key will be scoped to that organization.

func (*Client) PostAccessInviteOrganization

func (a *Client) PostAccessInviteOrganization(params *PostAccessInviteOrganizationParams, opts ...ClientOption) (*PostAccessInviteOrganizationOK, error)

PostAccessInviteOrganization Accept an Organization Invite given its `organization`.

func (*Client) PostAccessOrganization

func (a *Client) PostAccessOrganization(params *PostAccessOrganizationParams, opts ...ClientOption) (*PostAccessOrganizationOK, error)

PostAccessOrganization Creates a new Organization with the given `name`, and adds the user to it.

func (*Client) PostAccessOrganizationInvite

func (a *Client) PostAccessOrganizationInvite(params *PostAccessOrganizationInviteParams, opts ...ClientOption) (*PostAccessOrganizationInviteOK, error)

PostAccessOrganizationInvite Creates a new Organization Invite for the user with the given `email` for the Organization the session is scoped to.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DeleteAccessApikeyNameorid(params *DeleteAccessApikeyNameoridParams, opts ...ClientOption) (*DeleteAccessApikeyNameoridOK, error)

	DeleteAccessInviteOrganization(params *DeleteAccessInviteOrganizationParams, opts ...ClientOption) (*DeleteAccessInviteOrganizationOK, error)

	DeleteAccessOrganizationInviteEmail(params *DeleteAccessOrganizationInviteEmailParams, opts ...ClientOption) (*DeleteAccessOrganizationInviteEmailOK, error)

	DeleteAccessOrganizationName(params *DeleteAccessOrganizationNameParams, opts ...ClientOption) (*DeleteAccessOrganizationNameOK, error)

	GetAccessApikey(params *GetAccessApikeyParams, opts ...ClientOption) (*GetAccessApikeyOK, error)

	GetAccessApikeyNameorid(params *GetAccessApikeyNameoridParams, opts ...ClientOption) (*GetAccessApikeyNameoridOK, error)

	GetAccessInvite(params *GetAccessInviteParams, opts ...ClientOption) (*GetAccessInviteOK, error)

	GetAccessOrganization(params *GetAccessOrganizationParams, opts ...ClientOption) (*GetAccessOrganizationOK, error)

	GetAccessOrganizationInvite(params *GetAccessOrganizationInviteParams, opts ...ClientOption) (*GetAccessOrganizationInviteOK, error)

	PostAccessApikey(params *PostAccessApikeyParams, opts ...ClientOption) (*PostAccessApikeyOK, error)

	PostAccessInviteOrganization(params *PostAccessInviteOrganizationParams, opts ...ClientOption) (*PostAccessInviteOrganizationOK, error)

	PostAccessOrganization(params *PostAccessOrganizationParams, opts ...ClientOption) (*PostAccessOrganizationOK, error)

	PostAccessOrganizationInvite(params *PostAccessOrganizationInviteParams, opts ...ClientOption) (*PostAccessOrganizationInviteOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new access API client.

type DeleteAccessApikeyNameoridInternalServerError

type DeleteAccessApikeyNameoridInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewDeleteAccessApikeyNameoridInternalServerError

func NewDeleteAccessApikeyNameoridInternalServerError() *DeleteAccessApikeyNameoridInternalServerError

NewDeleteAccessApikeyNameoridInternalServerError creates a DeleteAccessApikeyNameoridInternalServerError with default headers values

func (*DeleteAccessApikeyNameoridInternalServerError) Code

Code gets the status code for the delete access apikey nameorid internal server error response

func (*DeleteAccessApikeyNameoridInternalServerError) Error

func (*DeleteAccessApikeyNameoridInternalServerError) GetPayload

func (*DeleteAccessApikeyNameoridInternalServerError) IsClientError

IsClientError returns true when this delete access apikey nameorid internal server error response has a 4xx status code

func (*DeleteAccessApikeyNameoridInternalServerError) IsCode

IsCode returns true when this delete access apikey nameorid internal server error response a status code equal to that given

func (*DeleteAccessApikeyNameoridInternalServerError) IsRedirect

IsRedirect returns true when this delete access apikey nameorid internal server error response has a 3xx status code

func (*DeleteAccessApikeyNameoridInternalServerError) IsServerError

IsServerError returns true when this delete access apikey nameorid internal server error response has a 5xx status code

func (*DeleteAccessApikeyNameoridInternalServerError) IsSuccess

IsSuccess returns true when this delete access apikey nameorid internal server error response has a 2xx status code

func (*DeleteAccessApikeyNameoridInternalServerError) String

type DeleteAccessApikeyNameoridNotFound

type DeleteAccessApikeyNameoridNotFound struct {
	Payload string
}

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

Not Found

func NewDeleteAccessApikeyNameoridNotFound

func NewDeleteAccessApikeyNameoridNotFound() *DeleteAccessApikeyNameoridNotFound

NewDeleteAccessApikeyNameoridNotFound creates a DeleteAccessApikeyNameoridNotFound with default headers values

func (*DeleteAccessApikeyNameoridNotFound) Code

Code gets the status code for the delete access apikey nameorid not found response

func (*DeleteAccessApikeyNameoridNotFound) Error

func (*DeleteAccessApikeyNameoridNotFound) GetPayload

func (*DeleteAccessApikeyNameoridNotFound) IsClientError

func (o *DeleteAccessApikeyNameoridNotFound) IsClientError() bool

IsClientError returns true when this delete access apikey nameorid not found response has a 4xx status code

func (*DeleteAccessApikeyNameoridNotFound) IsCode

IsCode returns true when this delete access apikey nameorid not found response a status code equal to that given

func (*DeleteAccessApikeyNameoridNotFound) IsRedirect

func (o *DeleteAccessApikeyNameoridNotFound) IsRedirect() bool

IsRedirect returns true when this delete access apikey nameorid not found response has a 3xx status code

func (*DeleteAccessApikeyNameoridNotFound) IsServerError

func (o *DeleteAccessApikeyNameoridNotFound) IsServerError() bool

IsServerError returns true when this delete access apikey nameorid not found response has a 5xx status code

func (*DeleteAccessApikeyNameoridNotFound) IsSuccess

IsSuccess returns true when this delete access apikey nameorid not found response has a 2xx status code

func (*DeleteAccessApikeyNameoridNotFound) String

type DeleteAccessApikeyNameoridOK

type DeleteAccessApikeyNameoridOK struct {
	Payload string
}

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

OK

func NewDeleteAccessApikeyNameoridOK

func NewDeleteAccessApikeyNameoridOK() *DeleteAccessApikeyNameoridOK

NewDeleteAccessApikeyNameoridOK creates a DeleteAccessApikeyNameoridOK with default headers values

func (*DeleteAccessApikeyNameoridOK) Code

Code gets the status code for the delete access apikey nameorid o k response

func (*DeleteAccessApikeyNameoridOK) Error

func (*DeleteAccessApikeyNameoridOK) GetPayload

func (o *DeleteAccessApikeyNameoridOK) GetPayload() string

func (*DeleteAccessApikeyNameoridOK) IsClientError

func (o *DeleteAccessApikeyNameoridOK) IsClientError() bool

IsClientError returns true when this delete access apikey nameorid o k response has a 4xx status code

func (*DeleteAccessApikeyNameoridOK) IsCode

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

IsCode returns true when this delete access apikey nameorid o k response a status code equal to that given

func (*DeleteAccessApikeyNameoridOK) IsRedirect

func (o *DeleteAccessApikeyNameoridOK) IsRedirect() bool

IsRedirect returns true when this delete access apikey nameorid o k response has a 3xx status code

func (*DeleteAccessApikeyNameoridOK) IsServerError

func (o *DeleteAccessApikeyNameoridOK) IsServerError() bool

IsServerError returns true when this delete access apikey nameorid o k response has a 5xx status code

func (*DeleteAccessApikeyNameoridOK) IsSuccess

func (o *DeleteAccessApikeyNameoridOK) IsSuccess() bool

IsSuccess returns true when this delete access apikey nameorid o k response has a 2xx status code

func (*DeleteAccessApikeyNameoridOK) String

type DeleteAccessApikeyNameoridParams

type DeleteAccessApikeyNameoridParams struct {

	/* Nameorid.

	   API Key Name or ID
	*/
	Nameorid string

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

DeleteAccessApikeyNameoridParams contains all the parameters to send to the API endpoint

for the delete access apikey nameorid operation.

Typically these are written to a http.Request.

func NewDeleteAccessApikeyNameoridParams

func NewDeleteAccessApikeyNameoridParams() *DeleteAccessApikeyNameoridParams

NewDeleteAccessApikeyNameoridParams creates a new DeleteAccessApikeyNameoridParams 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 NewDeleteAccessApikeyNameoridParamsWithContext

func NewDeleteAccessApikeyNameoridParamsWithContext(ctx context.Context) *DeleteAccessApikeyNameoridParams

NewDeleteAccessApikeyNameoridParamsWithContext creates a new DeleteAccessApikeyNameoridParams object with the ability to set a context for a request.

func NewDeleteAccessApikeyNameoridParamsWithHTTPClient

func NewDeleteAccessApikeyNameoridParamsWithHTTPClient(client *http.Client) *DeleteAccessApikeyNameoridParams

NewDeleteAccessApikeyNameoridParamsWithHTTPClient creates a new DeleteAccessApikeyNameoridParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteAccessApikeyNameoridParamsWithTimeout

func NewDeleteAccessApikeyNameoridParamsWithTimeout(timeout time.Duration) *DeleteAccessApikeyNameoridParams

NewDeleteAccessApikeyNameoridParamsWithTimeout creates a new DeleteAccessApikeyNameoridParams object with the ability to set a timeout on a request.

func (*DeleteAccessApikeyNameoridParams) SetContext

SetContext adds the context to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) SetDefaults

func (o *DeleteAccessApikeyNameoridParams) SetDefaults()

SetDefaults hydrates default values in the delete access apikey nameorid params (not the query body).

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

func (*DeleteAccessApikeyNameoridParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) SetNameorid

func (o *DeleteAccessApikeyNameoridParams) SetNameorid(nameorid string)

SetNameorid adds the nameorid to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) SetTimeout

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

SetTimeout adds the timeout to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) WithContext

WithContext adds the context to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) WithDefaults

WithDefaults hydrates default values in the delete access apikey nameorid params (not the query body).

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

func (*DeleteAccessApikeyNameoridParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) WithNameorid

WithNameorid adds the nameorid to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) WithTimeout

WithTimeout adds the timeout to the delete access apikey nameorid params

func (*DeleteAccessApikeyNameoridParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAccessApikeyNameoridReader

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

DeleteAccessApikeyNameoridReader is a Reader for the DeleteAccessApikeyNameorid structure.

func (*DeleteAccessApikeyNameoridReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAccessApikeyNameoridUnauthorized

type DeleteAccessApikeyNameoridUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewDeleteAccessApikeyNameoridUnauthorized

func NewDeleteAccessApikeyNameoridUnauthorized() *DeleteAccessApikeyNameoridUnauthorized

NewDeleteAccessApikeyNameoridUnauthorized creates a DeleteAccessApikeyNameoridUnauthorized with default headers values

func (*DeleteAccessApikeyNameoridUnauthorized) Code

Code gets the status code for the delete access apikey nameorid unauthorized response

func (*DeleteAccessApikeyNameoridUnauthorized) Error

func (*DeleteAccessApikeyNameoridUnauthorized) GetPayload

func (*DeleteAccessApikeyNameoridUnauthorized) IsClientError

func (o *DeleteAccessApikeyNameoridUnauthorized) IsClientError() bool

IsClientError returns true when this delete access apikey nameorid unauthorized response has a 4xx status code

func (*DeleteAccessApikeyNameoridUnauthorized) IsCode

IsCode returns true when this delete access apikey nameorid unauthorized response a status code equal to that given

func (*DeleteAccessApikeyNameoridUnauthorized) IsRedirect

IsRedirect returns true when this delete access apikey nameorid unauthorized response has a 3xx status code

func (*DeleteAccessApikeyNameoridUnauthorized) IsServerError

func (o *DeleteAccessApikeyNameoridUnauthorized) IsServerError() bool

IsServerError returns true when this delete access apikey nameorid unauthorized response has a 5xx status code

func (*DeleteAccessApikeyNameoridUnauthorized) IsSuccess

IsSuccess returns true when this delete access apikey nameorid unauthorized response has a 2xx status code

func (*DeleteAccessApikeyNameoridUnauthorized) String

type DeleteAccessInviteOrganizationBadRequest

type DeleteAccessInviteOrganizationBadRequest struct {
	Payload string
}

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

Bad Request

func NewDeleteAccessInviteOrganizationBadRequest

func NewDeleteAccessInviteOrganizationBadRequest() *DeleteAccessInviteOrganizationBadRequest

NewDeleteAccessInviteOrganizationBadRequest creates a DeleteAccessInviteOrganizationBadRequest with default headers values

func (*DeleteAccessInviteOrganizationBadRequest) Code

Code gets the status code for the delete access invite organization bad request response

func (*DeleteAccessInviteOrganizationBadRequest) Error

func (*DeleteAccessInviteOrganizationBadRequest) GetPayload

func (*DeleteAccessInviteOrganizationBadRequest) IsClientError

IsClientError returns true when this delete access invite organization bad request response has a 4xx status code

func (*DeleteAccessInviteOrganizationBadRequest) IsCode

IsCode returns true when this delete access invite organization bad request response a status code equal to that given

func (*DeleteAccessInviteOrganizationBadRequest) IsRedirect

IsRedirect returns true when this delete access invite organization bad request response has a 3xx status code

func (*DeleteAccessInviteOrganizationBadRequest) IsServerError

IsServerError returns true when this delete access invite organization bad request response has a 5xx status code

func (*DeleteAccessInviteOrganizationBadRequest) IsSuccess

IsSuccess returns true when this delete access invite organization bad request response has a 2xx status code

func (*DeleteAccessInviteOrganizationBadRequest) String

type DeleteAccessInviteOrganizationInternalServerError

type DeleteAccessInviteOrganizationInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewDeleteAccessInviteOrganizationInternalServerError

func NewDeleteAccessInviteOrganizationInternalServerError() *DeleteAccessInviteOrganizationInternalServerError

NewDeleteAccessInviteOrganizationInternalServerError creates a DeleteAccessInviteOrganizationInternalServerError with default headers values

func (*DeleteAccessInviteOrganizationInternalServerError) Code

Code gets the status code for the delete access invite organization internal server error response

func (*DeleteAccessInviteOrganizationInternalServerError) Error

func (*DeleteAccessInviteOrganizationInternalServerError) GetPayload

func (*DeleteAccessInviteOrganizationInternalServerError) IsClientError

IsClientError returns true when this delete access invite organization internal server error response has a 4xx status code

func (*DeleteAccessInviteOrganizationInternalServerError) IsCode

IsCode returns true when this delete access invite organization internal server error response a status code equal to that given

func (*DeleteAccessInviteOrganizationInternalServerError) IsRedirect

IsRedirect returns true when this delete access invite organization internal server error response has a 3xx status code

func (*DeleteAccessInviteOrganizationInternalServerError) IsServerError

IsServerError returns true when this delete access invite organization internal server error response has a 5xx status code

func (*DeleteAccessInviteOrganizationInternalServerError) IsSuccess

IsSuccess returns true when this delete access invite organization internal server error response has a 2xx status code

func (*DeleteAccessInviteOrganizationInternalServerError) String

type DeleteAccessInviteOrganizationOK

type DeleteAccessInviteOrganizationOK struct {
	Payload string
}

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

OK

func NewDeleteAccessInviteOrganizationOK

func NewDeleteAccessInviteOrganizationOK() *DeleteAccessInviteOrganizationOK

NewDeleteAccessInviteOrganizationOK creates a DeleteAccessInviteOrganizationOK with default headers values

func (*DeleteAccessInviteOrganizationOK) Code

Code gets the status code for the delete access invite organization o k response

func (*DeleteAccessInviteOrganizationOK) Error

func (*DeleteAccessInviteOrganizationOK) GetPayload

func (o *DeleteAccessInviteOrganizationOK) GetPayload() string

func (*DeleteAccessInviteOrganizationOK) IsClientError

func (o *DeleteAccessInviteOrganizationOK) IsClientError() bool

IsClientError returns true when this delete access invite organization o k response has a 4xx status code

func (*DeleteAccessInviteOrganizationOK) IsCode

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

IsCode returns true when this delete access invite organization o k response a status code equal to that given

func (*DeleteAccessInviteOrganizationOK) IsRedirect

func (o *DeleteAccessInviteOrganizationOK) IsRedirect() bool

IsRedirect returns true when this delete access invite organization o k response has a 3xx status code

func (*DeleteAccessInviteOrganizationOK) IsServerError

func (o *DeleteAccessInviteOrganizationOK) IsServerError() bool

IsServerError returns true when this delete access invite organization o k response has a 5xx status code

func (*DeleteAccessInviteOrganizationOK) IsSuccess

func (o *DeleteAccessInviteOrganizationOK) IsSuccess() bool

IsSuccess returns true when this delete access invite organization o k response has a 2xx status code

func (*DeleteAccessInviteOrganizationOK) String

type DeleteAccessInviteOrganizationParams

type DeleteAccessInviteOrganizationParams struct {

	/* Organization.

	   Organization Name
	*/
	Organization string

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

DeleteAccessInviteOrganizationParams contains all the parameters to send to the API endpoint

for the delete access invite organization operation.

Typically these are written to a http.Request.

func NewDeleteAccessInviteOrganizationParams

func NewDeleteAccessInviteOrganizationParams() *DeleteAccessInviteOrganizationParams

NewDeleteAccessInviteOrganizationParams creates a new DeleteAccessInviteOrganizationParams 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 NewDeleteAccessInviteOrganizationParamsWithContext

func NewDeleteAccessInviteOrganizationParamsWithContext(ctx context.Context) *DeleteAccessInviteOrganizationParams

NewDeleteAccessInviteOrganizationParamsWithContext creates a new DeleteAccessInviteOrganizationParams object with the ability to set a context for a request.

func NewDeleteAccessInviteOrganizationParamsWithHTTPClient

func NewDeleteAccessInviteOrganizationParamsWithHTTPClient(client *http.Client) *DeleteAccessInviteOrganizationParams

NewDeleteAccessInviteOrganizationParamsWithHTTPClient creates a new DeleteAccessInviteOrganizationParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteAccessInviteOrganizationParamsWithTimeout

func NewDeleteAccessInviteOrganizationParamsWithTimeout(timeout time.Duration) *DeleteAccessInviteOrganizationParams

NewDeleteAccessInviteOrganizationParamsWithTimeout creates a new DeleteAccessInviteOrganizationParams object with the ability to set a timeout on a request.

func (*DeleteAccessInviteOrganizationParams) SetContext

SetContext adds the context to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) SetDefaults

func (o *DeleteAccessInviteOrganizationParams) SetDefaults()

SetDefaults hydrates default values in the delete access invite organization params (not the query body).

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

func (*DeleteAccessInviteOrganizationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) SetOrganization

func (o *DeleteAccessInviteOrganizationParams) SetOrganization(organization string)

SetOrganization adds the organization to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) SetTimeout

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

SetTimeout adds the timeout to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) WithContext

WithContext adds the context to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) WithDefaults

WithDefaults hydrates default values in the delete access invite organization params (not the query body).

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

func (*DeleteAccessInviteOrganizationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) WithOrganization

WithOrganization adds the organization to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) WithTimeout

WithTimeout adds the timeout to the delete access invite organization params

func (*DeleteAccessInviteOrganizationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAccessInviteOrganizationReader

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

DeleteAccessInviteOrganizationReader is a Reader for the DeleteAccessInviteOrganization structure.

func (*DeleteAccessInviteOrganizationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAccessInviteOrganizationUnauthorized

type DeleteAccessInviteOrganizationUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewDeleteAccessInviteOrganizationUnauthorized

func NewDeleteAccessInviteOrganizationUnauthorized() *DeleteAccessInviteOrganizationUnauthorized

NewDeleteAccessInviteOrganizationUnauthorized creates a DeleteAccessInviteOrganizationUnauthorized with default headers values

func (*DeleteAccessInviteOrganizationUnauthorized) Code

Code gets the status code for the delete access invite organization unauthorized response

func (*DeleteAccessInviteOrganizationUnauthorized) Error

func (*DeleteAccessInviteOrganizationUnauthorized) GetPayload

func (*DeleteAccessInviteOrganizationUnauthorized) IsClientError

IsClientError returns true when this delete access invite organization unauthorized response has a 4xx status code

func (*DeleteAccessInviteOrganizationUnauthorized) IsCode

IsCode returns true when this delete access invite organization unauthorized response a status code equal to that given

func (*DeleteAccessInviteOrganizationUnauthorized) IsRedirect

IsRedirect returns true when this delete access invite organization unauthorized response has a 3xx status code

func (*DeleteAccessInviteOrganizationUnauthorized) IsServerError

IsServerError returns true when this delete access invite organization unauthorized response has a 5xx status code

func (*DeleteAccessInviteOrganizationUnauthorized) IsSuccess

IsSuccess returns true when this delete access invite organization unauthorized response has a 2xx status code

func (*DeleteAccessInviteOrganizationUnauthorized) String

type DeleteAccessOrganizationInviteEmailInternalServerError

type DeleteAccessOrganizationInviteEmailInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewDeleteAccessOrganizationInviteEmailInternalServerError

func NewDeleteAccessOrganizationInviteEmailInternalServerError() *DeleteAccessOrganizationInviteEmailInternalServerError

NewDeleteAccessOrganizationInviteEmailInternalServerError creates a DeleteAccessOrganizationInviteEmailInternalServerError with default headers values

func (*DeleteAccessOrganizationInviteEmailInternalServerError) Code

Code gets the status code for the delete access organization invite email internal server error response

func (*DeleteAccessOrganizationInviteEmailInternalServerError) Error

func (*DeleteAccessOrganizationInviteEmailInternalServerError) GetPayload

func (*DeleteAccessOrganizationInviteEmailInternalServerError) IsClientError

IsClientError returns true when this delete access organization invite email internal server error response has a 4xx status code

func (*DeleteAccessOrganizationInviteEmailInternalServerError) IsCode

IsCode returns true when this delete access organization invite email internal server error response a status code equal to that given

func (*DeleteAccessOrganizationInviteEmailInternalServerError) IsRedirect

IsRedirect returns true when this delete access organization invite email internal server error response has a 3xx status code

func (*DeleteAccessOrganizationInviteEmailInternalServerError) IsServerError

IsServerError returns true when this delete access organization invite email internal server error response has a 5xx status code

func (*DeleteAccessOrganizationInviteEmailInternalServerError) IsSuccess

IsSuccess returns true when this delete access organization invite email internal server error response has a 2xx status code

func (*DeleteAccessOrganizationInviteEmailInternalServerError) String

type DeleteAccessOrganizationInviteEmailNotFound

type DeleteAccessOrganizationInviteEmailNotFound struct {
	Payload string
}

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

Not Found

func NewDeleteAccessOrganizationInviteEmailNotFound

func NewDeleteAccessOrganizationInviteEmailNotFound() *DeleteAccessOrganizationInviteEmailNotFound

NewDeleteAccessOrganizationInviteEmailNotFound creates a DeleteAccessOrganizationInviteEmailNotFound with default headers values

func (*DeleteAccessOrganizationInviteEmailNotFound) Code

Code gets the status code for the delete access organization invite email not found response

func (*DeleteAccessOrganizationInviteEmailNotFound) Error

func (*DeleteAccessOrganizationInviteEmailNotFound) GetPayload

func (*DeleteAccessOrganizationInviteEmailNotFound) IsClientError

IsClientError returns true when this delete access organization invite email not found response has a 4xx status code

func (*DeleteAccessOrganizationInviteEmailNotFound) IsCode

IsCode returns true when this delete access organization invite email not found response a status code equal to that given

func (*DeleteAccessOrganizationInviteEmailNotFound) IsRedirect

IsRedirect returns true when this delete access organization invite email not found response has a 3xx status code

func (*DeleteAccessOrganizationInviteEmailNotFound) IsServerError

IsServerError returns true when this delete access organization invite email not found response has a 5xx status code

func (*DeleteAccessOrganizationInviteEmailNotFound) IsSuccess

IsSuccess returns true when this delete access organization invite email not found response has a 2xx status code

func (*DeleteAccessOrganizationInviteEmailNotFound) String

type DeleteAccessOrganizationInviteEmailNotImplemented

type DeleteAccessOrganizationInviteEmailNotImplemented struct {
	Payload string
}

DeleteAccessOrganizationInviteEmailNotImplemented describes a response with status code 501, with default header values.

Not Implemented

func NewDeleteAccessOrganizationInviteEmailNotImplemented

func NewDeleteAccessOrganizationInviteEmailNotImplemented() *DeleteAccessOrganizationInviteEmailNotImplemented

NewDeleteAccessOrganizationInviteEmailNotImplemented creates a DeleteAccessOrganizationInviteEmailNotImplemented with default headers values

func (*DeleteAccessOrganizationInviteEmailNotImplemented) Code

Code gets the status code for the delete access organization invite email not implemented response

func (*DeleteAccessOrganizationInviteEmailNotImplemented) Error

func (*DeleteAccessOrganizationInviteEmailNotImplemented) GetPayload

func (*DeleteAccessOrganizationInviteEmailNotImplemented) IsClientError

IsClientError returns true when this delete access organization invite email not implemented response has a 4xx status code

func (*DeleteAccessOrganizationInviteEmailNotImplemented) IsCode

IsCode returns true when this delete access organization invite email not implemented response a status code equal to that given

func (*DeleteAccessOrganizationInviteEmailNotImplemented) IsRedirect

IsRedirect returns true when this delete access organization invite email not implemented response has a 3xx status code

func (*DeleteAccessOrganizationInviteEmailNotImplemented) IsServerError

IsServerError returns true when this delete access organization invite email not implemented response has a 5xx status code

func (*DeleteAccessOrganizationInviteEmailNotImplemented) IsSuccess

IsSuccess returns true when this delete access organization invite email not implemented response has a 2xx status code

func (*DeleteAccessOrganizationInviteEmailNotImplemented) String

type DeleteAccessOrganizationInviteEmailOK

type DeleteAccessOrganizationInviteEmailOK struct {
	Payload string
}

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

OK

func NewDeleteAccessOrganizationInviteEmailOK

func NewDeleteAccessOrganizationInviteEmailOK() *DeleteAccessOrganizationInviteEmailOK

NewDeleteAccessOrganizationInviteEmailOK creates a DeleteAccessOrganizationInviteEmailOK with default headers values

func (*DeleteAccessOrganizationInviteEmailOK) Code

Code gets the status code for the delete access organization invite email o k response

func (*DeleteAccessOrganizationInviteEmailOK) Error

func (*DeleteAccessOrganizationInviteEmailOK) GetPayload

func (*DeleteAccessOrganizationInviteEmailOK) IsClientError

func (o *DeleteAccessOrganizationInviteEmailOK) IsClientError() bool

IsClientError returns true when this delete access organization invite email o k response has a 4xx status code

func (*DeleteAccessOrganizationInviteEmailOK) IsCode

IsCode returns true when this delete access organization invite email o k response a status code equal to that given

func (*DeleteAccessOrganizationInviteEmailOK) IsRedirect

IsRedirect returns true when this delete access organization invite email o k response has a 3xx status code

func (*DeleteAccessOrganizationInviteEmailOK) IsServerError

func (o *DeleteAccessOrganizationInviteEmailOK) IsServerError() bool

IsServerError returns true when this delete access organization invite email o k response has a 5xx status code

func (*DeleteAccessOrganizationInviteEmailOK) IsSuccess

IsSuccess returns true when this delete access organization invite email o k response has a 2xx status code

func (*DeleteAccessOrganizationInviteEmailOK) String

type DeleteAccessOrganizationInviteEmailParams

type DeleteAccessOrganizationInviteEmailParams struct {

	/* Email.

	   Organization Invite Email
	*/
	Email string

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

DeleteAccessOrganizationInviteEmailParams contains all the parameters to send to the API endpoint

for the delete access organization invite email operation.

Typically these are written to a http.Request.

func NewDeleteAccessOrganizationInviteEmailParams

func NewDeleteAccessOrganizationInviteEmailParams() *DeleteAccessOrganizationInviteEmailParams

NewDeleteAccessOrganizationInviteEmailParams creates a new DeleteAccessOrganizationInviteEmailParams 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 NewDeleteAccessOrganizationInviteEmailParamsWithContext

func NewDeleteAccessOrganizationInviteEmailParamsWithContext(ctx context.Context) *DeleteAccessOrganizationInviteEmailParams

NewDeleteAccessOrganizationInviteEmailParamsWithContext creates a new DeleteAccessOrganizationInviteEmailParams object with the ability to set a context for a request.

func NewDeleteAccessOrganizationInviteEmailParamsWithHTTPClient

func NewDeleteAccessOrganizationInviteEmailParamsWithHTTPClient(client *http.Client) *DeleteAccessOrganizationInviteEmailParams

NewDeleteAccessOrganizationInviteEmailParamsWithHTTPClient creates a new DeleteAccessOrganizationInviteEmailParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteAccessOrganizationInviteEmailParamsWithTimeout

func NewDeleteAccessOrganizationInviteEmailParamsWithTimeout(timeout time.Duration) *DeleteAccessOrganizationInviteEmailParams

NewDeleteAccessOrganizationInviteEmailParamsWithTimeout creates a new DeleteAccessOrganizationInviteEmailParams object with the ability to set a timeout on a request.

func (*DeleteAccessOrganizationInviteEmailParams) SetContext

SetContext adds the context to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) SetDefaults

SetDefaults hydrates default values in the delete access organization invite email params (not the query body).

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

func (*DeleteAccessOrganizationInviteEmailParams) SetEmail

SetEmail adds the email to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) SetTimeout

SetTimeout adds the timeout to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) WithContext

WithContext adds the context to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) WithDefaults

WithDefaults hydrates default values in the delete access organization invite email params (not the query body).

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

func (*DeleteAccessOrganizationInviteEmailParams) WithEmail

WithEmail adds the email to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) WithTimeout

WithTimeout adds the timeout to the delete access organization invite email params

func (*DeleteAccessOrganizationInviteEmailParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAccessOrganizationInviteEmailReader

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

DeleteAccessOrganizationInviteEmailReader is a Reader for the DeleteAccessOrganizationInviteEmail structure.

func (*DeleteAccessOrganizationInviteEmailReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAccessOrganizationInviteEmailUnauthorized

type DeleteAccessOrganizationInviteEmailUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewDeleteAccessOrganizationInviteEmailUnauthorized

func NewDeleteAccessOrganizationInviteEmailUnauthorized() *DeleteAccessOrganizationInviteEmailUnauthorized

NewDeleteAccessOrganizationInviteEmailUnauthorized creates a DeleteAccessOrganizationInviteEmailUnauthorized with default headers values

func (*DeleteAccessOrganizationInviteEmailUnauthorized) Code

Code gets the status code for the delete access organization invite email unauthorized response

func (*DeleteAccessOrganizationInviteEmailUnauthorized) Error

func (*DeleteAccessOrganizationInviteEmailUnauthorized) GetPayload

func (*DeleteAccessOrganizationInviteEmailUnauthorized) IsClientError

IsClientError returns true when this delete access organization invite email unauthorized response has a 4xx status code

func (*DeleteAccessOrganizationInviteEmailUnauthorized) IsCode

IsCode returns true when this delete access organization invite email unauthorized response a status code equal to that given

func (*DeleteAccessOrganizationInviteEmailUnauthorized) IsRedirect

IsRedirect returns true when this delete access organization invite email unauthorized response has a 3xx status code

func (*DeleteAccessOrganizationInviteEmailUnauthorized) IsServerError

IsServerError returns true when this delete access organization invite email unauthorized response has a 5xx status code

func (*DeleteAccessOrganizationInviteEmailUnauthorized) IsSuccess

IsSuccess returns true when this delete access organization invite email unauthorized response has a 2xx status code

func (*DeleteAccessOrganizationInviteEmailUnauthorized) String

type DeleteAccessOrganizationNameInternalServerError

type DeleteAccessOrganizationNameInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewDeleteAccessOrganizationNameInternalServerError

func NewDeleteAccessOrganizationNameInternalServerError() *DeleteAccessOrganizationNameInternalServerError

NewDeleteAccessOrganizationNameInternalServerError creates a DeleteAccessOrganizationNameInternalServerError with default headers values

func (*DeleteAccessOrganizationNameInternalServerError) Code

Code gets the status code for the delete access organization name internal server error response

func (*DeleteAccessOrganizationNameInternalServerError) Error

func (*DeleteAccessOrganizationNameInternalServerError) GetPayload

func (*DeleteAccessOrganizationNameInternalServerError) IsClientError

IsClientError returns true when this delete access organization name internal server error response has a 4xx status code

func (*DeleteAccessOrganizationNameInternalServerError) IsCode

IsCode returns true when this delete access organization name internal server error response a status code equal to that given

func (*DeleteAccessOrganizationNameInternalServerError) IsRedirect

IsRedirect returns true when this delete access organization name internal server error response has a 3xx status code

func (*DeleteAccessOrganizationNameInternalServerError) IsServerError

IsServerError returns true when this delete access organization name internal server error response has a 5xx status code

func (*DeleteAccessOrganizationNameInternalServerError) IsSuccess

IsSuccess returns true when this delete access organization name internal server error response has a 2xx status code

func (*DeleteAccessOrganizationNameInternalServerError) String

type DeleteAccessOrganizationNameNotFound

type DeleteAccessOrganizationNameNotFound struct {
	Payload string
}

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

Not Found

func NewDeleteAccessOrganizationNameNotFound

func NewDeleteAccessOrganizationNameNotFound() *DeleteAccessOrganizationNameNotFound

NewDeleteAccessOrganizationNameNotFound creates a DeleteAccessOrganizationNameNotFound with default headers values

func (*DeleteAccessOrganizationNameNotFound) Code

Code gets the status code for the delete access organization name not found response

func (*DeleteAccessOrganizationNameNotFound) Error

func (*DeleteAccessOrganizationNameNotFound) GetPayload

func (*DeleteAccessOrganizationNameNotFound) IsClientError

func (o *DeleteAccessOrganizationNameNotFound) IsClientError() bool

IsClientError returns true when this delete access organization name not found response has a 4xx status code

func (*DeleteAccessOrganizationNameNotFound) IsCode

IsCode returns true when this delete access organization name not found response a status code equal to that given

func (*DeleteAccessOrganizationNameNotFound) IsRedirect

IsRedirect returns true when this delete access organization name not found response has a 3xx status code

func (*DeleteAccessOrganizationNameNotFound) IsServerError

func (o *DeleteAccessOrganizationNameNotFound) IsServerError() bool

IsServerError returns true when this delete access organization name not found response has a 5xx status code

func (*DeleteAccessOrganizationNameNotFound) IsSuccess

IsSuccess returns true when this delete access organization name not found response has a 2xx status code

func (*DeleteAccessOrganizationNameNotFound) String

type DeleteAccessOrganizationNameNotImplemented

type DeleteAccessOrganizationNameNotImplemented struct {
	Payload string
}

DeleteAccessOrganizationNameNotImplemented describes a response with status code 501, with default header values.

Not Implemented

func NewDeleteAccessOrganizationNameNotImplemented

func NewDeleteAccessOrganizationNameNotImplemented() *DeleteAccessOrganizationNameNotImplemented

NewDeleteAccessOrganizationNameNotImplemented creates a DeleteAccessOrganizationNameNotImplemented with default headers values

func (*DeleteAccessOrganizationNameNotImplemented) Code

Code gets the status code for the delete access organization name not implemented response

func (*DeleteAccessOrganizationNameNotImplemented) Error

func (*DeleteAccessOrganizationNameNotImplemented) GetPayload

func (*DeleteAccessOrganizationNameNotImplemented) IsClientError

IsClientError returns true when this delete access organization name not implemented response has a 4xx status code

func (*DeleteAccessOrganizationNameNotImplemented) IsCode

IsCode returns true when this delete access organization name not implemented response a status code equal to that given

func (*DeleteAccessOrganizationNameNotImplemented) IsRedirect

IsRedirect returns true when this delete access organization name not implemented response has a 3xx status code

func (*DeleteAccessOrganizationNameNotImplemented) IsServerError

IsServerError returns true when this delete access organization name not implemented response has a 5xx status code

func (*DeleteAccessOrganizationNameNotImplemented) IsSuccess

IsSuccess returns true when this delete access organization name not implemented response has a 2xx status code

func (*DeleteAccessOrganizationNameNotImplemented) String

type DeleteAccessOrganizationNameOK

type DeleteAccessOrganizationNameOK struct {
	Payload string
}

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

OK

func NewDeleteAccessOrganizationNameOK

func NewDeleteAccessOrganizationNameOK() *DeleteAccessOrganizationNameOK

NewDeleteAccessOrganizationNameOK creates a DeleteAccessOrganizationNameOK with default headers values

func (*DeleteAccessOrganizationNameOK) Code

Code gets the status code for the delete access organization name o k response

func (*DeleteAccessOrganizationNameOK) Error

func (*DeleteAccessOrganizationNameOK) GetPayload

func (o *DeleteAccessOrganizationNameOK) GetPayload() string

func (*DeleteAccessOrganizationNameOK) IsClientError

func (o *DeleteAccessOrganizationNameOK) IsClientError() bool

IsClientError returns true when this delete access organization name o k response has a 4xx status code

func (*DeleteAccessOrganizationNameOK) IsCode

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

IsCode returns true when this delete access organization name o k response a status code equal to that given

func (*DeleteAccessOrganizationNameOK) IsRedirect

func (o *DeleteAccessOrganizationNameOK) IsRedirect() bool

IsRedirect returns true when this delete access organization name o k response has a 3xx status code

func (*DeleteAccessOrganizationNameOK) IsServerError

func (o *DeleteAccessOrganizationNameOK) IsServerError() bool

IsServerError returns true when this delete access organization name o k response has a 5xx status code

func (*DeleteAccessOrganizationNameOK) IsSuccess

func (o *DeleteAccessOrganizationNameOK) IsSuccess() bool

IsSuccess returns true when this delete access organization name o k response has a 2xx status code

func (*DeleteAccessOrganizationNameOK) String

type DeleteAccessOrganizationNameParams

type DeleteAccessOrganizationNameParams struct {

	/* Name.

	   Organization Name
	*/
	Name string

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

DeleteAccessOrganizationNameParams contains all the parameters to send to the API endpoint

for the delete access organization name operation.

Typically these are written to a http.Request.

func NewDeleteAccessOrganizationNameParams

func NewDeleteAccessOrganizationNameParams() *DeleteAccessOrganizationNameParams

NewDeleteAccessOrganizationNameParams creates a new DeleteAccessOrganizationNameParams 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 NewDeleteAccessOrganizationNameParamsWithContext

func NewDeleteAccessOrganizationNameParamsWithContext(ctx context.Context) *DeleteAccessOrganizationNameParams

NewDeleteAccessOrganizationNameParamsWithContext creates a new DeleteAccessOrganizationNameParams object with the ability to set a context for a request.

func NewDeleteAccessOrganizationNameParamsWithHTTPClient

func NewDeleteAccessOrganizationNameParamsWithHTTPClient(client *http.Client) *DeleteAccessOrganizationNameParams

NewDeleteAccessOrganizationNameParamsWithHTTPClient creates a new DeleteAccessOrganizationNameParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteAccessOrganizationNameParamsWithTimeout

func NewDeleteAccessOrganizationNameParamsWithTimeout(timeout time.Duration) *DeleteAccessOrganizationNameParams

NewDeleteAccessOrganizationNameParamsWithTimeout creates a new DeleteAccessOrganizationNameParams object with the ability to set a timeout on a request.

func (*DeleteAccessOrganizationNameParams) SetContext

SetContext adds the context to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) SetDefaults

func (o *DeleteAccessOrganizationNameParams) SetDefaults()

SetDefaults hydrates default values in the delete access organization name params (not the query body).

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

func (*DeleteAccessOrganizationNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) SetName

func (o *DeleteAccessOrganizationNameParams) SetName(name string)

SetName adds the name to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) SetTimeout

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

SetTimeout adds the timeout to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) WithContext

WithContext adds the context to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) WithDefaults

WithDefaults hydrates default values in the delete access organization name params (not the query body).

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

func (*DeleteAccessOrganizationNameParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) WithName

WithName adds the name to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) WithTimeout

WithTimeout adds the timeout to the delete access organization name params

func (*DeleteAccessOrganizationNameParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAccessOrganizationNameReader

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

DeleteAccessOrganizationNameReader is a Reader for the DeleteAccessOrganizationName structure.

func (*DeleteAccessOrganizationNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteAccessOrganizationNameUnauthorized

type DeleteAccessOrganizationNameUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewDeleteAccessOrganizationNameUnauthorized

func NewDeleteAccessOrganizationNameUnauthorized() *DeleteAccessOrganizationNameUnauthorized

NewDeleteAccessOrganizationNameUnauthorized creates a DeleteAccessOrganizationNameUnauthorized with default headers values

func (*DeleteAccessOrganizationNameUnauthorized) Code

Code gets the status code for the delete access organization name unauthorized response

func (*DeleteAccessOrganizationNameUnauthorized) Error

func (*DeleteAccessOrganizationNameUnauthorized) GetPayload

func (*DeleteAccessOrganizationNameUnauthorized) IsClientError

IsClientError returns true when this delete access organization name unauthorized response has a 4xx status code

func (*DeleteAccessOrganizationNameUnauthorized) IsCode

IsCode returns true when this delete access organization name unauthorized response a status code equal to that given

func (*DeleteAccessOrganizationNameUnauthorized) IsRedirect

IsRedirect returns true when this delete access organization name unauthorized response has a 3xx status code

func (*DeleteAccessOrganizationNameUnauthorized) IsServerError

IsServerError returns true when this delete access organization name unauthorized response has a 5xx status code

func (*DeleteAccessOrganizationNameUnauthorized) IsSuccess

IsSuccess returns true when this delete access organization name unauthorized response has a 2xx status code

func (*DeleteAccessOrganizationNameUnauthorized) String

type GetAccessApikeyInternalServerError

type GetAccessApikeyInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewGetAccessApikeyInternalServerError

func NewGetAccessApikeyInternalServerError() *GetAccessApikeyInternalServerError

NewGetAccessApikeyInternalServerError creates a GetAccessApikeyInternalServerError with default headers values

func (*GetAccessApikeyInternalServerError) Code

Code gets the status code for the get access apikey internal server error response

func (*GetAccessApikeyInternalServerError) Error

func (*GetAccessApikeyInternalServerError) GetPayload

func (*GetAccessApikeyInternalServerError) IsClientError

func (o *GetAccessApikeyInternalServerError) IsClientError() bool

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

func (*GetAccessApikeyInternalServerError) IsCode

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

func (*GetAccessApikeyInternalServerError) IsRedirect

func (o *GetAccessApikeyInternalServerError) IsRedirect() bool

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

func (*GetAccessApikeyInternalServerError) IsServerError

func (o *GetAccessApikeyInternalServerError) IsServerError() bool

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

func (*GetAccessApikeyInternalServerError) IsSuccess

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

func (*GetAccessApikeyInternalServerError) String

type GetAccessApikeyNameoridInternalServerError

type GetAccessApikeyNameoridInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewGetAccessApikeyNameoridInternalServerError

func NewGetAccessApikeyNameoridInternalServerError() *GetAccessApikeyNameoridInternalServerError

NewGetAccessApikeyNameoridInternalServerError creates a GetAccessApikeyNameoridInternalServerError with default headers values

func (*GetAccessApikeyNameoridInternalServerError) Code

Code gets the status code for the get access apikey nameorid internal server error response

func (*GetAccessApikeyNameoridInternalServerError) Error

func (*GetAccessApikeyNameoridInternalServerError) GetPayload

func (*GetAccessApikeyNameoridInternalServerError) IsClientError

IsClientError returns true when this get access apikey nameorid internal server error response has a 4xx status code

func (*GetAccessApikeyNameoridInternalServerError) IsCode

IsCode returns true when this get access apikey nameorid internal server error response a status code equal to that given

func (*GetAccessApikeyNameoridInternalServerError) IsRedirect

IsRedirect returns true when this get access apikey nameorid internal server error response has a 3xx status code

func (*GetAccessApikeyNameoridInternalServerError) IsServerError

IsServerError returns true when this get access apikey nameorid internal server error response has a 5xx status code

func (*GetAccessApikeyNameoridInternalServerError) IsSuccess

IsSuccess returns true when this get access apikey nameorid internal server error response has a 2xx status code

func (*GetAccessApikeyNameoridInternalServerError) String

type GetAccessApikeyNameoridNotFound

type GetAccessApikeyNameoridNotFound struct {
	Payload string
}

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

Not Found

func NewGetAccessApikeyNameoridNotFound

func NewGetAccessApikeyNameoridNotFound() *GetAccessApikeyNameoridNotFound

NewGetAccessApikeyNameoridNotFound creates a GetAccessApikeyNameoridNotFound with default headers values

func (*GetAccessApikeyNameoridNotFound) Code

Code gets the status code for the get access apikey nameorid not found response

func (*GetAccessApikeyNameoridNotFound) Error

func (*GetAccessApikeyNameoridNotFound) GetPayload

func (o *GetAccessApikeyNameoridNotFound) GetPayload() string

func (*GetAccessApikeyNameoridNotFound) IsClientError

func (o *GetAccessApikeyNameoridNotFound) IsClientError() bool

IsClientError returns true when this get access apikey nameorid not found response has a 4xx status code

func (*GetAccessApikeyNameoridNotFound) IsCode

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

IsCode returns true when this get access apikey nameorid not found response a status code equal to that given

func (*GetAccessApikeyNameoridNotFound) IsRedirect

func (o *GetAccessApikeyNameoridNotFound) IsRedirect() bool

IsRedirect returns true when this get access apikey nameorid not found response has a 3xx status code

func (*GetAccessApikeyNameoridNotFound) IsServerError

func (o *GetAccessApikeyNameoridNotFound) IsServerError() bool

IsServerError returns true when this get access apikey nameorid not found response has a 5xx status code

func (*GetAccessApikeyNameoridNotFound) IsSuccess

func (o *GetAccessApikeyNameoridNotFound) IsSuccess() bool

IsSuccess returns true when this get access apikey nameorid not found response has a 2xx status code

func (*GetAccessApikeyNameoridNotFound) String

type GetAccessApikeyNameoridOK

type GetAccessApikeyNameoridOK struct {
	Payload *models.ModelsGetAPIKeyResponse
}

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

OK

func NewGetAccessApikeyNameoridOK

func NewGetAccessApikeyNameoridOK() *GetAccessApikeyNameoridOK

NewGetAccessApikeyNameoridOK creates a GetAccessApikeyNameoridOK with default headers values

func (*GetAccessApikeyNameoridOK) Code

func (o *GetAccessApikeyNameoridOK) Code() int

Code gets the status code for the get access apikey nameorid o k response

func (*GetAccessApikeyNameoridOK) Error

func (o *GetAccessApikeyNameoridOK) Error() string

func (*GetAccessApikeyNameoridOK) GetPayload

func (*GetAccessApikeyNameoridOK) IsClientError

func (o *GetAccessApikeyNameoridOK) IsClientError() bool

IsClientError returns true when this get access apikey nameorid o k response has a 4xx status code

func (*GetAccessApikeyNameoridOK) IsCode

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

IsCode returns true when this get access apikey nameorid o k response a status code equal to that given

func (*GetAccessApikeyNameoridOK) IsRedirect

func (o *GetAccessApikeyNameoridOK) IsRedirect() bool

IsRedirect returns true when this get access apikey nameorid o k response has a 3xx status code

func (*GetAccessApikeyNameoridOK) IsServerError

func (o *GetAccessApikeyNameoridOK) IsServerError() bool

IsServerError returns true when this get access apikey nameorid o k response has a 5xx status code

func (*GetAccessApikeyNameoridOK) IsSuccess

func (o *GetAccessApikeyNameoridOK) IsSuccess() bool

IsSuccess returns true when this get access apikey nameorid o k response has a 2xx status code

func (*GetAccessApikeyNameoridOK) String

func (o *GetAccessApikeyNameoridOK) String() string

type GetAccessApikeyNameoridParams

type GetAccessApikeyNameoridParams struct {

	/* Nameorid.

	   API Key Name or ID
	*/
	Nameorid string

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

GetAccessApikeyNameoridParams contains all the parameters to send to the API endpoint

for the get access apikey nameorid operation.

Typically these are written to a http.Request.

func NewGetAccessApikeyNameoridParams

func NewGetAccessApikeyNameoridParams() *GetAccessApikeyNameoridParams

NewGetAccessApikeyNameoridParams creates a new GetAccessApikeyNameoridParams 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 NewGetAccessApikeyNameoridParamsWithContext

func NewGetAccessApikeyNameoridParamsWithContext(ctx context.Context) *GetAccessApikeyNameoridParams

NewGetAccessApikeyNameoridParamsWithContext creates a new GetAccessApikeyNameoridParams object with the ability to set a context for a request.

func NewGetAccessApikeyNameoridParamsWithHTTPClient

func NewGetAccessApikeyNameoridParamsWithHTTPClient(client *http.Client) *GetAccessApikeyNameoridParams

NewGetAccessApikeyNameoridParamsWithHTTPClient creates a new GetAccessApikeyNameoridParams object with the ability to set a custom HTTPClient for a request.

func NewGetAccessApikeyNameoridParamsWithTimeout

func NewGetAccessApikeyNameoridParamsWithTimeout(timeout time.Duration) *GetAccessApikeyNameoridParams

NewGetAccessApikeyNameoridParamsWithTimeout creates a new GetAccessApikeyNameoridParams object with the ability to set a timeout on a request.

func (*GetAccessApikeyNameoridParams) SetContext

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

SetContext adds the context to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) SetDefaults

func (o *GetAccessApikeyNameoridParams) SetDefaults()

SetDefaults hydrates default values in the get access apikey nameorid params (not the query body).

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

func (*GetAccessApikeyNameoridParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) SetNameorid

func (o *GetAccessApikeyNameoridParams) SetNameorid(nameorid string)

SetNameorid adds the nameorid to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) SetTimeout

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

SetTimeout adds the timeout to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) WithContext

WithContext adds the context to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) WithDefaults

WithDefaults hydrates default values in the get access apikey nameorid params (not the query body).

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

func (*GetAccessApikeyNameoridParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) WithNameorid

WithNameorid adds the nameorid to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) WithTimeout

WithTimeout adds the timeout to the get access apikey nameorid params

func (*GetAccessApikeyNameoridParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAccessApikeyNameoridReader

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

GetAccessApikeyNameoridReader is a Reader for the GetAccessApikeyNameorid structure.

func (*GetAccessApikeyNameoridReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAccessApikeyNameoridUnauthorized

type GetAccessApikeyNameoridUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewGetAccessApikeyNameoridUnauthorized

func NewGetAccessApikeyNameoridUnauthorized() *GetAccessApikeyNameoridUnauthorized

NewGetAccessApikeyNameoridUnauthorized creates a GetAccessApikeyNameoridUnauthorized with default headers values

func (*GetAccessApikeyNameoridUnauthorized) Code

Code gets the status code for the get access apikey nameorid unauthorized response

func (*GetAccessApikeyNameoridUnauthorized) Error

func (*GetAccessApikeyNameoridUnauthorized) GetPayload

func (*GetAccessApikeyNameoridUnauthorized) IsClientError

func (o *GetAccessApikeyNameoridUnauthorized) IsClientError() bool

IsClientError returns true when this get access apikey nameorid unauthorized response has a 4xx status code

func (*GetAccessApikeyNameoridUnauthorized) IsCode

IsCode returns true when this get access apikey nameorid unauthorized response a status code equal to that given

func (*GetAccessApikeyNameoridUnauthorized) IsRedirect

func (o *GetAccessApikeyNameoridUnauthorized) IsRedirect() bool

IsRedirect returns true when this get access apikey nameorid unauthorized response has a 3xx status code

func (*GetAccessApikeyNameoridUnauthorized) IsServerError

func (o *GetAccessApikeyNameoridUnauthorized) IsServerError() bool

IsServerError returns true when this get access apikey nameorid unauthorized response has a 5xx status code

func (*GetAccessApikeyNameoridUnauthorized) IsSuccess

IsSuccess returns true when this get access apikey nameorid unauthorized response has a 2xx status code

func (*GetAccessApikeyNameoridUnauthorized) String

type GetAccessApikeyOK

type GetAccessApikeyOK struct {
	Payload []*models.ModelsGetAPIKeyResponse
}

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

OK

func NewGetAccessApikeyOK

func NewGetAccessApikeyOK() *GetAccessApikeyOK

NewGetAccessApikeyOK creates a GetAccessApikeyOK with default headers values

func (*GetAccessApikeyOK) Code

func (o *GetAccessApikeyOK) Code() int

Code gets the status code for the get access apikey o k response

func (*GetAccessApikeyOK) Error

func (o *GetAccessApikeyOK) Error() string

func (*GetAccessApikeyOK) GetPayload

func (*GetAccessApikeyOK) IsClientError

func (o *GetAccessApikeyOK) IsClientError() bool

IsClientError returns true when this get access apikey o k response has a 4xx status code

func (*GetAccessApikeyOK) IsCode

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

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

func (*GetAccessApikeyOK) IsRedirect

func (o *GetAccessApikeyOK) IsRedirect() bool

IsRedirect returns true when this get access apikey o k response has a 3xx status code

func (*GetAccessApikeyOK) IsServerError

func (o *GetAccessApikeyOK) IsServerError() bool

IsServerError returns true when this get access apikey o k response has a 5xx status code

func (*GetAccessApikeyOK) IsSuccess

func (o *GetAccessApikeyOK) IsSuccess() bool

IsSuccess returns true when this get access apikey o k response has a 2xx status code

func (*GetAccessApikeyOK) String

func (o *GetAccessApikeyOK) String() string

type GetAccessApikeyParams

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

GetAccessApikeyParams contains all the parameters to send to the API endpoint

for the get access apikey operation.

Typically these are written to a http.Request.

func NewGetAccessApikeyParams

func NewGetAccessApikeyParams() *GetAccessApikeyParams

NewGetAccessApikeyParams creates a new GetAccessApikeyParams 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 NewGetAccessApikeyParamsWithContext

func NewGetAccessApikeyParamsWithContext(ctx context.Context) *GetAccessApikeyParams

NewGetAccessApikeyParamsWithContext creates a new GetAccessApikeyParams object with the ability to set a context for a request.

func NewGetAccessApikeyParamsWithHTTPClient

func NewGetAccessApikeyParamsWithHTTPClient(client *http.Client) *GetAccessApikeyParams

NewGetAccessApikeyParamsWithHTTPClient creates a new GetAccessApikeyParams object with the ability to set a custom HTTPClient for a request.

func NewGetAccessApikeyParamsWithTimeout

func NewGetAccessApikeyParamsWithTimeout(timeout time.Duration) *GetAccessApikeyParams

NewGetAccessApikeyParamsWithTimeout creates a new GetAccessApikeyParams object with the ability to set a timeout on a request.

func (*GetAccessApikeyParams) SetContext

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

SetContext adds the context to the get access apikey params

func (*GetAccessApikeyParams) SetDefaults

func (o *GetAccessApikeyParams) SetDefaults()

SetDefaults hydrates default values in the get access apikey params (not the query body).

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

func (*GetAccessApikeyParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get access apikey params

func (*GetAccessApikeyParams) SetTimeout

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

SetTimeout adds the timeout to the get access apikey params

func (*GetAccessApikeyParams) WithContext

WithContext adds the context to the get access apikey params

func (*GetAccessApikeyParams) WithDefaults

func (o *GetAccessApikeyParams) WithDefaults() *GetAccessApikeyParams

WithDefaults hydrates default values in the get access apikey params (not the query body).

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

func (*GetAccessApikeyParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get access apikey params

func (*GetAccessApikeyParams) WithTimeout

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

WithTimeout adds the timeout to the get access apikey params

func (*GetAccessApikeyParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAccessApikeyReader

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

GetAccessApikeyReader is a Reader for the GetAccessApikey structure.

func (*GetAccessApikeyReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAccessApikeyUnauthorized

type GetAccessApikeyUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewGetAccessApikeyUnauthorized

func NewGetAccessApikeyUnauthorized() *GetAccessApikeyUnauthorized

NewGetAccessApikeyUnauthorized creates a GetAccessApikeyUnauthorized with default headers values

func (*GetAccessApikeyUnauthorized) Code

func (o *GetAccessApikeyUnauthorized) Code() int

Code gets the status code for the get access apikey unauthorized response

func (*GetAccessApikeyUnauthorized) Error

func (*GetAccessApikeyUnauthorized) GetPayload

func (o *GetAccessApikeyUnauthorized) GetPayload() string

func (*GetAccessApikeyUnauthorized) IsClientError

func (o *GetAccessApikeyUnauthorized) IsClientError() bool

IsClientError returns true when this get access apikey unauthorized response has a 4xx status code

func (*GetAccessApikeyUnauthorized) IsCode

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

IsCode returns true when this get access apikey unauthorized response a status code equal to that given

func (*GetAccessApikeyUnauthorized) IsRedirect

func (o *GetAccessApikeyUnauthorized) IsRedirect() bool

IsRedirect returns true when this get access apikey unauthorized response has a 3xx status code

func (*GetAccessApikeyUnauthorized) IsServerError

func (o *GetAccessApikeyUnauthorized) IsServerError() bool

IsServerError returns true when this get access apikey unauthorized response has a 5xx status code

func (*GetAccessApikeyUnauthorized) IsSuccess

func (o *GetAccessApikeyUnauthorized) IsSuccess() bool

IsSuccess returns true when this get access apikey unauthorized response has a 2xx status code

func (*GetAccessApikeyUnauthorized) String

func (o *GetAccessApikeyUnauthorized) String() string

type GetAccessInviteInternalServerError

type GetAccessInviteInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewGetAccessInviteInternalServerError

func NewGetAccessInviteInternalServerError() *GetAccessInviteInternalServerError

NewGetAccessInviteInternalServerError creates a GetAccessInviteInternalServerError with default headers values

func (*GetAccessInviteInternalServerError) Code

Code gets the status code for the get access invite internal server error response

func (*GetAccessInviteInternalServerError) Error

func (*GetAccessInviteInternalServerError) GetPayload

func (*GetAccessInviteInternalServerError) IsClientError

func (o *GetAccessInviteInternalServerError) IsClientError() bool

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

func (*GetAccessInviteInternalServerError) IsCode

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

func (*GetAccessInviteInternalServerError) IsRedirect

func (o *GetAccessInviteInternalServerError) IsRedirect() bool

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

func (*GetAccessInviteInternalServerError) IsServerError

func (o *GetAccessInviteInternalServerError) IsServerError() bool

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

func (*GetAccessInviteInternalServerError) IsSuccess

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

func (*GetAccessInviteInternalServerError) String

type GetAccessInviteOK

type GetAccessInviteOK struct {
	Payload []*models.ModelsOrganizationInviteResponse
}

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

OK

func NewGetAccessInviteOK

func NewGetAccessInviteOK() *GetAccessInviteOK

NewGetAccessInviteOK creates a GetAccessInviteOK with default headers values

func (*GetAccessInviteOK) Code

func (o *GetAccessInviteOK) Code() int

Code gets the status code for the get access invite o k response

func (*GetAccessInviteOK) Error

func (o *GetAccessInviteOK) Error() string

func (*GetAccessInviteOK) GetPayload

func (*GetAccessInviteOK) IsClientError

func (o *GetAccessInviteOK) IsClientError() bool

IsClientError returns true when this get access invite o k response has a 4xx status code

func (*GetAccessInviteOK) IsCode

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

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

func (*GetAccessInviteOK) IsRedirect

func (o *GetAccessInviteOK) IsRedirect() bool

IsRedirect returns true when this get access invite o k response has a 3xx status code

func (*GetAccessInviteOK) IsServerError

func (o *GetAccessInviteOK) IsServerError() bool

IsServerError returns true when this get access invite o k response has a 5xx status code

func (*GetAccessInviteOK) IsSuccess

func (o *GetAccessInviteOK) IsSuccess() bool

IsSuccess returns true when this get access invite o k response has a 2xx status code

func (*GetAccessInviteOK) String

func (o *GetAccessInviteOK) String() string

type GetAccessInviteParams

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

GetAccessInviteParams contains all the parameters to send to the API endpoint

for the get access invite operation.

Typically these are written to a http.Request.

func NewGetAccessInviteParams

func NewGetAccessInviteParams() *GetAccessInviteParams

NewGetAccessInviteParams creates a new GetAccessInviteParams 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 NewGetAccessInviteParamsWithContext

func NewGetAccessInviteParamsWithContext(ctx context.Context) *GetAccessInviteParams

NewGetAccessInviteParamsWithContext creates a new GetAccessInviteParams object with the ability to set a context for a request.

func NewGetAccessInviteParamsWithHTTPClient

func NewGetAccessInviteParamsWithHTTPClient(client *http.Client) *GetAccessInviteParams

NewGetAccessInviteParamsWithHTTPClient creates a new GetAccessInviteParams object with the ability to set a custom HTTPClient for a request.

func NewGetAccessInviteParamsWithTimeout

func NewGetAccessInviteParamsWithTimeout(timeout time.Duration) *GetAccessInviteParams

NewGetAccessInviteParamsWithTimeout creates a new GetAccessInviteParams object with the ability to set a timeout on a request.

func (*GetAccessInviteParams) SetContext

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

SetContext adds the context to the get access invite params

func (*GetAccessInviteParams) SetDefaults

func (o *GetAccessInviteParams) SetDefaults()

SetDefaults hydrates default values in the get access invite params (not the query body).

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

func (*GetAccessInviteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get access invite params

func (*GetAccessInviteParams) SetTimeout

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

SetTimeout adds the timeout to the get access invite params

func (*GetAccessInviteParams) WithContext

WithContext adds the context to the get access invite params

func (*GetAccessInviteParams) WithDefaults

func (o *GetAccessInviteParams) WithDefaults() *GetAccessInviteParams

WithDefaults hydrates default values in the get access invite params (not the query body).

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

func (*GetAccessInviteParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get access invite params

func (*GetAccessInviteParams) WithTimeout

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

WithTimeout adds the timeout to the get access invite params

func (*GetAccessInviteParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAccessInviteReader

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

GetAccessInviteReader is a Reader for the GetAccessInvite structure.

func (*GetAccessInviteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAccessInviteUnauthorized

type GetAccessInviteUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewGetAccessInviteUnauthorized

func NewGetAccessInviteUnauthorized() *GetAccessInviteUnauthorized

NewGetAccessInviteUnauthorized creates a GetAccessInviteUnauthorized with default headers values

func (*GetAccessInviteUnauthorized) Code

func (o *GetAccessInviteUnauthorized) Code() int

Code gets the status code for the get access invite unauthorized response

func (*GetAccessInviteUnauthorized) Error

func (*GetAccessInviteUnauthorized) GetPayload

func (o *GetAccessInviteUnauthorized) GetPayload() string

func (*GetAccessInviteUnauthorized) IsClientError

func (o *GetAccessInviteUnauthorized) IsClientError() bool

IsClientError returns true when this get access invite unauthorized response has a 4xx status code

func (*GetAccessInviteUnauthorized) IsCode

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

IsCode returns true when this get access invite unauthorized response a status code equal to that given

func (*GetAccessInviteUnauthorized) IsRedirect

func (o *GetAccessInviteUnauthorized) IsRedirect() bool

IsRedirect returns true when this get access invite unauthorized response has a 3xx status code

func (*GetAccessInviteUnauthorized) IsServerError

func (o *GetAccessInviteUnauthorized) IsServerError() bool

IsServerError returns true when this get access invite unauthorized response has a 5xx status code

func (*GetAccessInviteUnauthorized) IsSuccess

func (o *GetAccessInviteUnauthorized) IsSuccess() bool

IsSuccess returns true when this get access invite unauthorized response has a 2xx status code

func (*GetAccessInviteUnauthorized) String

func (o *GetAccessInviteUnauthorized) String() string

type GetAccessOrganizationInternalServerError

type GetAccessOrganizationInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewGetAccessOrganizationInternalServerError

func NewGetAccessOrganizationInternalServerError() *GetAccessOrganizationInternalServerError

NewGetAccessOrganizationInternalServerError creates a GetAccessOrganizationInternalServerError with default headers values

func (*GetAccessOrganizationInternalServerError) Code

Code gets the status code for the get access organization internal server error response

func (*GetAccessOrganizationInternalServerError) Error

func (*GetAccessOrganizationInternalServerError) GetPayload

func (*GetAccessOrganizationInternalServerError) IsClientError

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

func (*GetAccessOrganizationInternalServerError) IsCode

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

func (*GetAccessOrganizationInternalServerError) IsRedirect

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

func (*GetAccessOrganizationInternalServerError) IsServerError

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

func (*GetAccessOrganizationInternalServerError) IsSuccess

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

func (*GetAccessOrganizationInternalServerError) String

type GetAccessOrganizationInviteInternalServerError

type GetAccessOrganizationInviteInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewGetAccessOrganizationInviteInternalServerError

func NewGetAccessOrganizationInviteInternalServerError() *GetAccessOrganizationInviteInternalServerError

NewGetAccessOrganizationInviteInternalServerError creates a GetAccessOrganizationInviteInternalServerError with default headers values

func (*GetAccessOrganizationInviteInternalServerError) Code

Code gets the status code for the get access organization invite internal server error response

func (*GetAccessOrganizationInviteInternalServerError) Error

func (*GetAccessOrganizationInviteInternalServerError) GetPayload

func (*GetAccessOrganizationInviteInternalServerError) IsClientError

IsClientError returns true when this get access organization invite internal server error response has a 4xx status code

func (*GetAccessOrganizationInviteInternalServerError) IsCode

IsCode returns true when this get access organization invite internal server error response a status code equal to that given

func (*GetAccessOrganizationInviteInternalServerError) IsRedirect

IsRedirect returns true when this get access organization invite internal server error response has a 3xx status code

func (*GetAccessOrganizationInviteInternalServerError) IsServerError

IsServerError returns true when this get access organization invite internal server error response has a 5xx status code

func (*GetAccessOrganizationInviteInternalServerError) IsSuccess

IsSuccess returns true when this get access organization invite internal server error response has a 2xx status code

func (*GetAccessOrganizationInviteInternalServerError) String

type GetAccessOrganizationInviteOK

type GetAccessOrganizationInviteOK struct {
	Payload []*models.ModelsOrganizationResponse
}

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

OK

func NewGetAccessOrganizationInviteOK

func NewGetAccessOrganizationInviteOK() *GetAccessOrganizationInviteOK

NewGetAccessOrganizationInviteOK creates a GetAccessOrganizationInviteOK with default headers values

func (*GetAccessOrganizationInviteOK) Code

Code gets the status code for the get access organization invite o k response

func (*GetAccessOrganizationInviteOK) Error

func (*GetAccessOrganizationInviteOK) GetPayload

func (*GetAccessOrganizationInviteOK) IsClientError

func (o *GetAccessOrganizationInviteOK) IsClientError() bool

IsClientError returns true when this get access organization invite o k response has a 4xx status code

func (*GetAccessOrganizationInviteOK) IsCode

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

IsCode returns true when this get access organization invite o k response a status code equal to that given

func (*GetAccessOrganizationInviteOK) IsRedirect

func (o *GetAccessOrganizationInviteOK) IsRedirect() bool

IsRedirect returns true when this get access organization invite o k response has a 3xx status code

func (*GetAccessOrganizationInviteOK) IsServerError

func (o *GetAccessOrganizationInviteOK) IsServerError() bool

IsServerError returns true when this get access organization invite o k response has a 5xx status code

func (*GetAccessOrganizationInviteOK) IsSuccess

func (o *GetAccessOrganizationInviteOK) IsSuccess() bool

IsSuccess returns true when this get access organization invite o k response has a 2xx status code

func (*GetAccessOrganizationInviteOK) String

type GetAccessOrganizationInviteParams

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

GetAccessOrganizationInviteParams contains all the parameters to send to the API endpoint

for the get access organization invite operation.

Typically these are written to a http.Request.

func NewGetAccessOrganizationInviteParams

func NewGetAccessOrganizationInviteParams() *GetAccessOrganizationInviteParams

NewGetAccessOrganizationInviteParams creates a new GetAccessOrganizationInviteParams 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 NewGetAccessOrganizationInviteParamsWithContext

func NewGetAccessOrganizationInviteParamsWithContext(ctx context.Context) *GetAccessOrganizationInviteParams

NewGetAccessOrganizationInviteParamsWithContext creates a new GetAccessOrganizationInviteParams object with the ability to set a context for a request.

func NewGetAccessOrganizationInviteParamsWithHTTPClient

func NewGetAccessOrganizationInviteParamsWithHTTPClient(client *http.Client) *GetAccessOrganizationInviteParams

NewGetAccessOrganizationInviteParamsWithHTTPClient creates a new GetAccessOrganizationInviteParams object with the ability to set a custom HTTPClient for a request.

func NewGetAccessOrganizationInviteParamsWithTimeout

func NewGetAccessOrganizationInviteParamsWithTimeout(timeout time.Duration) *GetAccessOrganizationInviteParams

NewGetAccessOrganizationInviteParamsWithTimeout creates a new GetAccessOrganizationInviteParams object with the ability to set a timeout on a request.

func (*GetAccessOrganizationInviteParams) SetContext

SetContext adds the context to the get access organization invite params

func (*GetAccessOrganizationInviteParams) SetDefaults

func (o *GetAccessOrganizationInviteParams) SetDefaults()

SetDefaults hydrates default values in the get access organization invite params (not the query body).

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

func (*GetAccessOrganizationInviteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get access organization invite params

func (*GetAccessOrganizationInviteParams) SetTimeout

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

SetTimeout adds the timeout to the get access organization invite params

func (*GetAccessOrganizationInviteParams) WithContext

WithContext adds the context to the get access organization invite params

func (*GetAccessOrganizationInviteParams) WithDefaults

WithDefaults hydrates default values in the get access organization invite params (not the query body).

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

func (*GetAccessOrganizationInviteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get access organization invite params

func (*GetAccessOrganizationInviteParams) WithTimeout

WithTimeout adds the timeout to the get access organization invite params

func (*GetAccessOrganizationInviteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAccessOrganizationInviteReader

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

GetAccessOrganizationInviteReader is a Reader for the GetAccessOrganizationInvite structure.

func (*GetAccessOrganizationInviteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAccessOrganizationInviteUnauthorized

type GetAccessOrganizationInviteUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewGetAccessOrganizationInviteUnauthorized

func NewGetAccessOrganizationInviteUnauthorized() *GetAccessOrganizationInviteUnauthorized

NewGetAccessOrganizationInviteUnauthorized creates a GetAccessOrganizationInviteUnauthorized with default headers values

func (*GetAccessOrganizationInviteUnauthorized) Code

Code gets the status code for the get access organization invite unauthorized response

func (*GetAccessOrganizationInviteUnauthorized) Error

func (*GetAccessOrganizationInviteUnauthorized) GetPayload

func (*GetAccessOrganizationInviteUnauthorized) IsClientError

func (o *GetAccessOrganizationInviteUnauthorized) IsClientError() bool

IsClientError returns true when this get access organization invite unauthorized response has a 4xx status code

func (*GetAccessOrganizationInviteUnauthorized) IsCode

IsCode returns true when this get access organization invite unauthorized response a status code equal to that given

func (*GetAccessOrganizationInviteUnauthorized) IsRedirect

IsRedirect returns true when this get access organization invite unauthorized response has a 3xx status code

func (*GetAccessOrganizationInviteUnauthorized) IsServerError

func (o *GetAccessOrganizationInviteUnauthorized) IsServerError() bool

IsServerError returns true when this get access organization invite unauthorized response has a 5xx status code

func (*GetAccessOrganizationInviteUnauthorized) IsSuccess

IsSuccess returns true when this get access organization invite unauthorized response has a 2xx status code

func (*GetAccessOrganizationInviteUnauthorized) String

type GetAccessOrganizationOK

type GetAccessOrganizationOK struct {
	Payload []*models.ModelsOrganizationResponse
}

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

OK

func NewGetAccessOrganizationOK

func NewGetAccessOrganizationOK() *GetAccessOrganizationOK

NewGetAccessOrganizationOK creates a GetAccessOrganizationOK with default headers values

func (*GetAccessOrganizationOK) Code

func (o *GetAccessOrganizationOK) Code() int

Code gets the status code for the get access organization o k response

func (*GetAccessOrganizationOK) Error

func (o *GetAccessOrganizationOK) Error() string

func (*GetAccessOrganizationOK) GetPayload

func (*GetAccessOrganizationOK) IsClientError

func (o *GetAccessOrganizationOK) IsClientError() bool

IsClientError returns true when this get access organization o k response has a 4xx status code

func (*GetAccessOrganizationOK) IsCode

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

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

func (*GetAccessOrganizationOK) IsRedirect

func (o *GetAccessOrganizationOK) IsRedirect() bool

IsRedirect returns true when this get access organization o k response has a 3xx status code

func (*GetAccessOrganizationOK) IsServerError

func (o *GetAccessOrganizationOK) IsServerError() bool

IsServerError returns true when this get access organization o k response has a 5xx status code

func (*GetAccessOrganizationOK) IsSuccess

func (o *GetAccessOrganizationOK) IsSuccess() bool

IsSuccess returns true when this get access organization o k response has a 2xx status code

func (*GetAccessOrganizationOK) String

func (o *GetAccessOrganizationOK) String() string

type GetAccessOrganizationParams

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

GetAccessOrganizationParams contains all the parameters to send to the API endpoint

for the get access organization operation.

Typically these are written to a http.Request.

func NewGetAccessOrganizationParams

func NewGetAccessOrganizationParams() *GetAccessOrganizationParams

NewGetAccessOrganizationParams creates a new GetAccessOrganizationParams 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 NewGetAccessOrganizationParamsWithContext

func NewGetAccessOrganizationParamsWithContext(ctx context.Context) *GetAccessOrganizationParams

NewGetAccessOrganizationParamsWithContext creates a new GetAccessOrganizationParams object with the ability to set a context for a request.

func NewGetAccessOrganizationParamsWithHTTPClient

func NewGetAccessOrganizationParamsWithHTTPClient(client *http.Client) *GetAccessOrganizationParams

NewGetAccessOrganizationParamsWithHTTPClient creates a new GetAccessOrganizationParams object with the ability to set a custom HTTPClient for a request.

func NewGetAccessOrganizationParamsWithTimeout

func NewGetAccessOrganizationParamsWithTimeout(timeout time.Duration) *GetAccessOrganizationParams

NewGetAccessOrganizationParamsWithTimeout creates a new GetAccessOrganizationParams object with the ability to set a timeout on a request.

func (*GetAccessOrganizationParams) SetContext

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

SetContext adds the context to the get access organization params

func (*GetAccessOrganizationParams) SetDefaults

func (o *GetAccessOrganizationParams) SetDefaults()

SetDefaults hydrates default values in the get access organization params (not the query body).

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

func (*GetAccessOrganizationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get access organization params

func (*GetAccessOrganizationParams) SetTimeout

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

SetTimeout adds the timeout to the get access organization params

func (*GetAccessOrganizationParams) WithContext

WithContext adds the context to the get access organization params

func (*GetAccessOrganizationParams) WithDefaults

WithDefaults hydrates default values in the get access organization params (not the query body).

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

func (*GetAccessOrganizationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get access organization params

func (*GetAccessOrganizationParams) WithTimeout

WithTimeout adds the timeout to the get access organization params

func (*GetAccessOrganizationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAccessOrganizationReader

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

GetAccessOrganizationReader is a Reader for the GetAccessOrganization structure.

func (*GetAccessOrganizationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAccessOrganizationUnauthorized

type GetAccessOrganizationUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewGetAccessOrganizationUnauthorized

func NewGetAccessOrganizationUnauthorized() *GetAccessOrganizationUnauthorized

NewGetAccessOrganizationUnauthorized creates a GetAccessOrganizationUnauthorized with default headers values

func (*GetAccessOrganizationUnauthorized) Code

Code gets the status code for the get access organization unauthorized response

func (*GetAccessOrganizationUnauthorized) Error

func (*GetAccessOrganizationUnauthorized) GetPayload

func (o *GetAccessOrganizationUnauthorized) GetPayload() string

func (*GetAccessOrganizationUnauthorized) IsClientError

func (o *GetAccessOrganizationUnauthorized) IsClientError() bool

IsClientError returns true when this get access organization unauthorized response has a 4xx status code

func (*GetAccessOrganizationUnauthorized) IsCode

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

IsCode returns true when this get access organization unauthorized response a status code equal to that given

func (*GetAccessOrganizationUnauthorized) IsRedirect

func (o *GetAccessOrganizationUnauthorized) IsRedirect() bool

IsRedirect returns true when this get access organization unauthorized response has a 3xx status code

func (*GetAccessOrganizationUnauthorized) IsServerError

func (o *GetAccessOrganizationUnauthorized) IsServerError() bool

IsServerError returns true when this get access organization unauthorized response has a 5xx status code

func (*GetAccessOrganizationUnauthorized) IsSuccess

func (o *GetAccessOrganizationUnauthorized) IsSuccess() bool

IsSuccess returns true when this get access organization unauthorized response has a 2xx status code

func (*GetAccessOrganizationUnauthorized) String

type PostAccessApikeyBadRequest

type PostAccessApikeyBadRequest struct {
	Payload string
}

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

Bad Request

func NewPostAccessApikeyBadRequest

func NewPostAccessApikeyBadRequest() *PostAccessApikeyBadRequest

NewPostAccessApikeyBadRequest creates a PostAccessApikeyBadRequest with default headers values

func (*PostAccessApikeyBadRequest) Code

func (o *PostAccessApikeyBadRequest) Code() int

Code gets the status code for the post access apikey bad request response

func (*PostAccessApikeyBadRequest) Error

func (*PostAccessApikeyBadRequest) GetPayload

func (o *PostAccessApikeyBadRequest) GetPayload() string

func (*PostAccessApikeyBadRequest) IsClientError

func (o *PostAccessApikeyBadRequest) IsClientError() bool

IsClientError returns true when this post access apikey bad request response has a 4xx status code

func (*PostAccessApikeyBadRequest) IsCode

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

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

func (*PostAccessApikeyBadRequest) IsRedirect

func (o *PostAccessApikeyBadRequest) IsRedirect() bool

IsRedirect returns true when this post access apikey bad request response has a 3xx status code

func (*PostAccessApikeyBadRequest) IsServerError

func (o *PostAccessApikeyBadRequest) IsServerError() bool

IsServerError returns true when this post access apikey bad request response has a 5xx status code

func (*PostAccessApikeyBadRequest) IsSuccess

func (o *PostAccessApikeyBadRequest) IsSuccess() bool

IsSuccess returns true when this post access apikey bad request response has a 2xx status code

func (*PostAccessApikeyBadRequest) String

func (o *PostAccessApikeyBadRequest) String() string

type PostAccessApikeyInternalServerError

type PostAccessApikeyInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewPostAccessApikeyInternalServerError

func NewPostAccessApikeyInternalServerError() *PostAccessApikeyInternalServerError

NewPostAccessApikeyInternalServerError creates a PostAccessApikeyInternalServerError with default headers values

func (*PostAccessApikeyInternalServerError) Code

Code gets the status code for the post access apikey internal server error response

func (*PostAccessApikeyInternalServerError) Error

func (*PostAccessApikeyInternalServerError) GetPayload

func (*PostAccessApikeyInternalServerError) IsClientError

func (o *PostAccessApikeyInternalServerError) IsClientError() bool

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

func (*PostAccessApikeyInternalServerError) IsCode

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

func (*PostAccessApikeyInternalServerError) IsRedirect

func (o *PostAccessApikeyInternalServerError) IsRedirect() bool

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

func (*PostAccessApikeyInternalServerError) IsServerError

func (o *PostAccessApikeyInternalServerError) IsServerError() bool

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

func (*PostAccessApikeyInternalServerError) IsSuccess

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

func (*PostAccessApikeyInternalServerError) String

type PostAccessApikeyOK

type PostAccessApikeyOK struct {
	Payload *models.ModelsCreateAPIKeyResponse
}

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

OK

func NewPostAccessApikeyOK

func NewPostAccessApikeyOK() *PostAccessApikeyOK

NewPostAccessApikeyOK creates a PostAccessApikeyOK with default headers values

func (*PostAccessApikeyOK) Code

func (o *PostAccessApikeyOK) Code() int

Code gets the status code for the post access apikey o k response

func (*PostAccessApikeyOK) Error

func (o *PostAccessApikeyOK) Error() string

func (*PostAccessApikeyOK) GetPayload

func (*PostAccessApikeyOK) IsClientError

func (o *PostAccessApikeyOK) IsClientError() bool

IsClientError returns true when this post access apikey o k response has a 4xx status code

func (*PostAccessApikeyOK) IsCode

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

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

func (*PostAccessApikeyOK) IsRedirect

func (o *PostAccessApikeyOK) IsRedirect() bool

IsRedirect returns true when this post access apikey o k response has a 3xx status code

func (*PostAccessApikeyOK) IsServerError

func (o *PostAccessApikeyOK) IsServerError() bool

IsServerError returns true when this post access apikey o k response has a 5xx status code

func (*PostAccessApikeyOK) IsSuccess

func (o *PostAccessApikeyOK) IsSuccess() bool

IsSuccess returns true when this post access apikey o k response has a 2xx status code

func (*PostAccessApikeyOK) String

func (o *PostAccessApikeyOK) String() string

type PostAccessApikeyParams

type PostAccessApikeyParams struct {

	/* Request.

	   Create API Key Request
	*/
	Request *models.ModelsCreateAPIKeyRequest

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

PostAccessApikeyParams contains all the parameters to send to the API endpoint

for the post access apikey operation.

Typically these are written to a http.Request.

func NewPostAccessApikeyParams

func NewPostAccessApikeyParams() *PostAccessApikeyParams

NewPostAccessApikeyParams creates a new PostAccessApikeyParams 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 NewPostAccessApikeyParamsWithContext

func NewPostAccessApikeyParamsWithContext(ctx context.Context) *PostAccessApikeyParams

NewPostAccessApikeyParamsWithContext creates a new PostAccessApikeyParams object with the ability to set a context for a request.

func NewPostAccessApikeyParamsWithHTTPClient

func NewPostAccessApikeyParamsWithHTTPClient(client *http.Client) *PostAccessApikeyParams

NewPostAccessApikeyParamsWithHTTPClient creates a new PostAccessApikeyParams object with the ability to set a custom HTTPClient for a request.

func NewPostAccessApikeyParamsWithTimeout

func NewPostAccessApikeyParamsWithTimeout(timeout time.Duration) *PostAccessApikeyParams

NewPostAccessApikeyParamsWithTimeout creates a new PostAccessApikeyParams object with the ability to set a timeout on a request.

func (*PostAccessApikeyParams) SetContext

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

SetContext adds the context to the post access apikey params

func (*PostAccessApikeyParams) SetDefaults

func (o *PostAccessApikeyParams) SetDefaults()

SetDefaults hydrates default values in the post access apikey params (not the query body).

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

func (*PostAccessApikeyParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post access apikey params

func (*PostAccessApikeyParams) SetRequest

SetRequest adds the request to the post access apikey params

func (*PostAccessApikeyParams) SetTimeout

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

SetTimeout adds the timeout to the post access apikey params

func (*PostAccessApikeyParams) WithContext

WithContext adds the context to the post access apikey params

func (*PostAccessApikeyParams) WithDefaults

WithDefaults hydrates default values in the post access apikey params (not the query body).

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

func (*PostAccessApikeyParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post access apikey params

func (*PostAccessApikeyParams) WithRequest

WithRequest adds the request to the post access apikey params

func (*PostAccessApikeyParams) WithTimeout

WithTimeout adds the timeout to the post access apikey params

func (*PostAccessApikeyParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAccessApikeyReader

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

PostAccessApikeyReader is a Reader for the PostAccessApikey structure.

func (*PostAccessApikeyReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostAccessApikeyUnauthorized

type PostAccessApikeyUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewPostAccessApikeyUnauthorized

func NewPostAccessApikeyUnauthorized() *PostAccessApikeyUnauthorized

NewPostAccessApikeyUnauthorized creates a PostAccessApikeyUnauthorized with default headers values

func (*PostAccessApikeyUnauthorized) Code

Code gets the status code for the post access apikey unauthorized response

func (*PostAccessApikeyUnauthorized) Error

func (*PostAccessApikeyUnauthorized) GetPayload

func (o *PostAccessApikeyUnauthorized) GetPayload() string

func (*PostAccessApikeyUnauthorized) IsClientError

func (o *PostAccessApikeyUnauthorized) IsClientError() bool

IsClientError returns true when this post access apikey unauthorized response has a 4xx status code

func (*PostAccessApikeyUnauthorized) IsCode

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

IsCode returns true when this post access apikey unauthorized response a status code equal to that given

func (*PostAccessApikeyUnauthorized) IsRedirect

func (o *PostAccessApikeyUnauthorized) IsRedirect() bool

IsRedirect returns true when this post access apikey unauthorized response has a 3xx status code

func (*PostAccessApikeyUnauthorized) IsServerError

func (o *PostAccessApikeyUnauthorized) IsServerError() bool

IsServerError returns true when this post access apikey unauthorized response has a 5xx status code

func (*PostAccessApikeyUnauthorized) IsSuccess

func (o *PostAccessApikeyUnauthorized) IsSuccess() bool

IsSuccess returns true when this post access apikey unauthorized response has a 2xx status code

func (*PostAccessApikeyUnauthorized) String

type PostAccessInviteOrganizationBadRequest

type PostAccessInviteOrganizationBadRequest struct {
	Payload string
}

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

Bad Request

func NewPostAccessInviteOrganizationBadRequest

func NewPostAccessInviteOrganizationBadRequest() *PostAccessInviteOrganizationBadRequest

NewPostAccessInviteOrganizationBadRequest creates a PostAccessInviteOrganizationBadRequest with default headers values

func (*PostAccessInviteOrganizationBadRequest) Code

Code gets the status code for the post access invite organization bad request response

func (*PostAccessInviteOrganizationBadRequest) Error

func (*PostAccessInviteOrganizationBadRequest) GetPayload

func (*PostAccessInviteOrganizationBadRequest) IsClientError

func (o *PostAccessInviteOrganizationBadRequest) IsClientError() bool

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

func (*PostAccessInviteOrganizationBadRequest) IsCode

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

func (*PostAccessInviteOrganizationBadRequest) IsRedirect

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

func (*PostAccessInviteOrganizationBadRequest) IsServerError

func (o *PostAccessInviteOrganizationBadRequest) IsServerError() bool

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

func (*PostAccessInviteOrganizationBadRequest) IsSuccess

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

func (*PostAccessInviteOrganizationBadRequest) String

type PostAccessInviteOrganizationInternalServerError

type PostAccessInviteOrganizationInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewPostAccessInviteOrganizationInternalServerError

func NewPostAccessInviteOrganizationInternalServerError() *PostAccessInviteOrganizationInternalServerError

NewPostAccessInviteOrganizationInternalServerError creates a PostAccessInviteOrganizationInternalServerError with default headers values

func (*PostAccessInviteOrganizationInternalServerError) Code

Code gets the status code for the post access invite organization internal server error response

func (*PostAccessInviteOrganizationInternalServerError) Error

func (*PostAccessInviteOrganizationInternalServerError) GetPayload

func (*PostAccessInviteOrganizationInternalServerError) IsClientError

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

func (*PostAccessInviteOrganizationInternalServerError) IsCode

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

func (*PostAccessInviteOrganizationInternalServerError) IsRedirect

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

func (*PostAccessInviteOrganizationInternalServerError) IsServerError

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

func (*PostAccessInviteOrganizationInternalServerError) IsSuccess

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

func (*PostAccessInviteOrganizationInternalServerError) String

type PostAccessInviteOrganizationOK

type PostAccessInviteOrganizationOK struct {
	Payload string
}

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

OK

func NewPostAccessInviteOrganizationOK

func NewPostAccessInviteOrganizationOK() *PostAccessInviteOrganizationOK

NewPostAccessInviteOrganizationOK creates a PostAccessInviteOrganizationOK with default headers values

func (*PostAccessInviteOrganizationOK) Code

Code gets the status code for the post access invite organization o k response

func (*PostAccessInviteOrganizationOK) Error

func (*PostAccessInviteOrganizationOK) GetPayload

func (o *PostAccessInviteOrganizationOK) GetPayload() string

func (*PostAccessInviteOrganizationOK) IsClientError

func (o *PostAccessInviteOrganizationOK) IsClientError() bool

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

func (*PostAccessInviteOrganizationOK) IsCode

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

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

func (*PostAccessInviteOrganizationOK) IsRedirect

func (o *PostAccessInviteOrganizationOK) IsRedirect() bool

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

func (*PostAccessInviteOrganizationOK) IsServerError

func (o *PostAccessInviteOrganizationOK) IsServerError() bool

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

func (*PostAccessInviteOrganizationOK) IsSuccess

func (o *PostAccessInviteOrganizationOK) IsSuccess() bool

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

func (*PostAccessInviteOrganizationOK) String

type PostAccessInviteOrganizationParams

type PostAccessInviteOrganizationParams struct {

	/* Organization.

	   Organization Name
	*/
	Organization string

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

PostAccessInviteOrganizationParams contains all the parameters to send to the API endpoint

for the post access invite organization operation.

Typically these are written to a http.Request.

func NewPostAccessInviteOrganizationParams

func NewPostAccessInviteOrganizationParams() *PostAccessInviteOrganizationParams

NewPostAccessInviteOrganizationParams creates a new PostAccessInviteOrganizationParams 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 NewPostAccessInviteOrganizationParamsWithContext

func NewPostAccessInviteOrganizationParamsWithContext(ctx context.Context) *PostAccessInviteOrganizationParams

NewPostAccessInviteOrganizationParamsWithContext creates a new PostAccessInviteOrganizationParams object with the ability to set a context for a request.

func NewPostAccessInviteOrganizationParamsWithHTTPClient

func NewPostAccessInviteOrganizationParamsWithHTTPClient(client *http.Client) *PostAccessInviteOrganizationParams

NewPostAccessInviteOrganizationParamsWithHTTPClient creates a new PostAccessInviteOrganizationParams object with the ability to set a custom HTTPClient for a request.

func NewPostAccessInviteOrganizationParamsWithTimeout

func NewPostAccessInviteOrganizationParamsWithTimeout(timeout time.Duration) *PostAccessInviteOrganizationParams

NewPostAccessInviteOrganizationParamsWithTimeout creates a new PostAccessInviteOrganizationParams object with the ability to set a timeout on a request.

func (*PostAccessInviteOrganizationParams) SetContext

SetContext adds the context to the post access invite organization params

func (*PostAccessInviteOrganizationParams) SetDefaults

func (o *PostAccessInviteOrganizationParams) SetDefaults()

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

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

func (*PostAccessInviteOrganizationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post access invite organization params

func (*PostAccessInviteOrganizationParams) SetOrganization

func (o *PostAccessInviteOrganizationParams) SetOrganization(organization string)

SetOrganization adds the organization to the post access invite organization params

func (*PostAccessInviteOrganizationParams) SetTimeout

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

SetTimeout adds the timeout to the post access invite organization params

func (*PostAccessInviteOrganizationParams) WithContext

WithContext adds the context to the post access invite organization params

func (*PostAccessInviteOrganizationParams) WithDefaults

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

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

func (*PostAccessInviteOrganizationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post access invite organization params

func (*PostAccessInviteOrganizationParams) WithOrganization

WithOrganization adds the organization to the post access invite organization params

func (*PostAccessInviteOrganizationParams) WithTimeout

WithTimeout adds the timeout to the post access invite organization params

func (*PostAccessInviteOrganizationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAccessInviteOrganizationReader

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

PostAccessInviteOrganizationReader is a Reader for the PostAccessInviteOrganization structure.

func (*PostAccessInviteOrganizationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostAccessInviteOrganizationUnauthorized

type PostAccessInviteOrganizationUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewPostAccessInviteOrganizationUnauthorized

func NewPostAccessInviteOrganizationUnauthorized() *PostAccessInviteOrganizationUnauthorized

NewPostAccessInviteOrganizationUnauthorized creates a PostAccessInviteOrganizationUnauthorized with default headers values

func (*PostAccessInviteOrganizationUnauthorized) Code

Code gets the status code for the post access invite organization unauthorized response

func (*PostAccessInviteOrganizationUnauthorized) Error

func (*PostAccessInviteOrganizationUnauthorized) GetPayload

func (*PostAccessInviteOrganizationUnauthorized) IsClientError

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

func (*PostAccessInviteOrganizationUnauthorized) IsCode

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

func (*PostAccessInviteOrganizationUnauthorized) IsRedirect

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

func (*PostAccessInviteOrganizationUnauthorized) IsServerError

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

func (*PostAccessInviteOrganizationUnauthorized) IsSuccess

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

func (*PostAccessInviteOrganizationUnauthorized) String

type PostAccessOrganizationBadRequest

type PostAccessOrganizationBadRequest struct {
	Payload string
}

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

Bad Request

func NewPostAccessOrganizationBadRequest

func NewPostAccessOrganizationBadRequest() *PostAccessOrganizationBadRequest

NewPostAccessOrganizationBadRequest creates a PostAccessOrganizationBadRequest with default headers values

func (*PostAccessOrganizationBadRequest) Code

Code gets the status code for the post access organization bad request response

func (*PostAccessOrganizationBadRequest) Error

func (*PostAccessOrganizationBadRequest) GetPayload

func (o *PostAccessOrganizationBadRequest) GetPayload() string

func (*PostAccessOrganizationBadRequest) IsClientError

func (o *PostAccessOrganizationBadRequest) IsClientError() bool

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

func (*PostAccessOrganizationBadRequest) IsCode

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

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

func (*PostAccessOrganizationBadRequest) IsRedirect

func (o *PostAccessOrganizationBadRequest) IsRedirect() bool

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

func (*PostAccessOrganizationBadRequest) IsServerError

func (o *PostAccessOrganizationBadRequest) IsServerError() bool

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

func (*PostAccessOrganizationBadRequest) IsSuccess

func (o *PostAccessOrganizationBadRequest) IsSuccess() bool

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

func (*PostAccessOrganizationBadRequest) String

type PostAccessOrganizationInternalServerError

type PostAccessOrganizationInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewPostAccessOrganizationInternalServerError

func NewPostAccessOrganizationInternalServerError() *PostAccessOrganizationInternalServerError

NewPostAccessOrganizationInternalServerError creates a PostAccessOrganizationInternalServerError with default headers values

func (*PostAccessOrganizationInternalServerError) Code

Code gets the status code for the post access organization internal server error response

func (*PostAccessOrganizationInternalServerError) Error

func (*PostAccessOrganizationInternalServerError) GetPayload

func (*PostAccessOrganizationInternalServerError) IsClientError

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

func (*PostAccessOrganizationInternalServerError) IsCode

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

func (*PostAccessOrganizationInternalServerError) IsRedirect

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

func (*PostAccessOrganizationInternalServerError) IsServerError

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

func (*PostAccessOrganizationInternalServerError) IsSuccess

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

func (*PostAccessOrganizationInternalServerError) String

type PostAccessOrganizationInviteBadRequest

type PostAccessOrganizationInviteBadRequest struct {
	Payload string
}

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

Bad Request

func NewPostAccessOrganizationInviteBadRequest

func NewPostAccessOrganizationInviteBadRequest() *PostAccessOrganizationInviteBadRequest

NewPostAccessOrganizationInviteBadRequest creates a PostAccessOrganizationInviteBadRequest with default headers values

func (*PostAccessOrganizationInviteBadRequest) Code

Code gets the status code for the post access organization invite bad request response

func (*PostAccessOrganizationInviteBadRequest) Error

func (*PostAccessOrganizationInviteBadRequest) GetPayload

func (*PostAccessOrganizationInviteBadRequest) IsClientError

func (o *PostAccessOrganizationInviteBadRequest) IsClientError() bool

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

func (*PostAccessOrganizationInviteBadRequest) IsCode

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

func (*PostAccessOrganizationInviteBadRequest) IsRedirect

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

func (*PostAccessOrganizationInviteBadRequest) IsServerError

func (o *PostAccessOrganizationInviteBadRequest) IsServerError() bool

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

func (*PostAccessOrganizationInviteBadRequest) IsSuccess

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

func (*PostAccessOrganizationInviteBadRequest) String

type PostAccessOrganizationInviteInternalServerError

type PostAccessOrganizationInviteInternalServerError struct {
	Payload string
}

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

Internal Server Error

func NewPostAccessOrganizationInviteInternalServerError

func NewPostAccessOrganizationInviteInternalServerError() *PostAccessOrganizationInviteInternalServerError

NewPostAccessOrganizationInviteInternalServerError creates a PostAccessOrganizationInviteInternalServerError with default headers values

func (*PostAccessOrganizationInviteInternalServerError) Code

Code gets the status code for the post access organization invite internal server error response

func (*PostAccessOrganizationInviteInternalServerError) Error

func (*PostAccessOrganizationInviteInternalServerError) GetPayload

func (*PostAccessOrganizationInviteInternalServerError) IsClientError

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

func (*PostAccessOrganizationInviteInternalServerError) IsCode

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

func (*PostAccessOrganizationInviteInternalServerError) IsRedirect

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

func (*PostAccessOrganizationInviteInternalServerError) IsServerError

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

func (*PostAccessOrganizationInviteInternalServerError) IsSuccess

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

func (*PostAccessOrganizationInviteInternalServerError) String

type PostAccessOrganizationInviteOK

type PostAccessOrganizationInviteOK struct {
	Payload *models.ModelsOrganizationInviteResponse
}

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

OK

func NewPostAccessOrganizationInviteOK

func NewPostAccessOrganizationInviteOK() *PostAccessOrganizationInviteOK

NewPostAccessOrganizationInviteOK creates a PostAccessOrganizationInviteOK with default headers values

func (*PostAccessOrganizationInviteOK) Code

Code gets the status code for the post access organization invite o k response

func (*PostAccessOrganizationInviteOK) Error

func (*PostAccessOrganizationInviteOK) GetPayload

func (*PostAccessOrganizationInviteOK) IsClientError

func (o *PostAccessOrganizationInviteOK) IsClientError() bool

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

func (*PostAccessOrganizationInviteOK) IsCode

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

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

func (*PostAccessOrganizationInviteOK) IsRedirect

func (o *PostAccessOrganizationInviteOK) IsRedirect() bool

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

func (*PostAccessOrganizationInviteOK) IsServerError

func (o *PostAccessOrganizationInviteOK) IsServerError() bool

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

func (*PostAccessOrganizationInviteOK) IsSuccess

func (o *PostAccessOrganizationInviteOK) IsSuccess() bool

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

func (*PostAccessOrganizationInviteOK) String

type PostAccessOrganizationInviteParams

type PostAccessOrganizationInviteParams struct {

	/* Request.

	   Create Invite Request
	*/
	Request *models.ModelsCreateOrganizationInviteRequest

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

PostAccessOrganizationInviteParams contains all the parameters to send to the API endpoint

for the post access organization invite operation.

Typically these are written to a http.Request.

func NewPostAccessOrganizationInviteParams

func NewPostAccessOrganizationInviteParams() *PostAccessOrganizationInviteParams

NewPostAccessOrganizationInviteParams creates a new PostAccessOrganizationInviteParams 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 NewPostAccessOrganizationInviteParamsWithContext

func NewPostAccessOrganizationInviteParamsWithContext(ctx context.Context) *PostAccessOrganizationInviteParams

NewPostAccessOrganizationInviteParamsWithContext creates a new PostAccessOrganizationInviteParams object with the ability to set a context for a request.

func NewPostAccessOrganizationInviteParamsWithHTTPClient

func NewPostAccessOrganizationInviteParamsWithHTTPClient(client *http.Client) *PostAccessOrganizationInviteParams

NewPostAccessOrganizationInviteParamsWithHTTPClient creates a new PostAccessOrganizationInviteParams object with the ability to set a custom HTTPClient for a request.

func NewPostAccessOrganizationInviteParamsWithTimeout

func NewPostAccessOrganizationInviteParamsWithTimeout(timeout time.Duration) *PostAccessOrganizationInviteParams

NewPostAccessOrganizationInviteParamsWithTimeout creates a new PostAccessOrganizationInviteParams object with the ability to set a timeout on a request.

func (*PostAccessOrganizationInviteParams) SetContext

SetContext adds the context to the post access organization invite params

func (*PostAccessOrganizationInviteParams) SetDefaults

func (o *PostAccessOrganizationInviteParams) SetDefaults()

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

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

func (*PostAccessOrganizationInviteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post access organization invite params

func (*PostAccessOrganizationInviteParams) SetRequest

SetRequest adds the request to the post access organization invite params

func (*PostAccessOrganizationInviteParams) SetTimeout

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

SetTimeout adds the timeout to the post access organization invite params

func (*PostAccessOrganizationInviteParams) WithContext

WithContext adds the context to the post access organization invite params

func (*PostAccessOrganizationInviteParams) WithDefaults

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

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

func (*PostAccessOrganizationInviteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post access organization invite params

func (*PostAccessOrganizationInviteParams) WithRequest

WithRequest adds the request to the post access organization invite params

func (*PostAccessOrganizationInviteParams) WithTimeout

WithTimeout adds the timeout to the post access organization invite params

func (*PostAccessOrganizationInviteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAccessOrganizationInviteReader

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

PostAccessOrganizationInviteReader is a Reader for the PostAccessOrganizationInvite structure.

func (*PostAccessOrganizationInviteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostAccessOrganizationInviteUnauthorized

type PostAccessOrganizationInviteUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewPostAccessOrganizationInviteUnauthorized

func NewPostAccessOrganizationInviteUnauthorized() *PostAccessOrganizationInviteUnauthorized

NewPostAccessOrganizationInviteUnauthorized creates a PostAccessOrganizationInviteUnauthorized with default headers values

func (*PostAccessOrganizationInviteUnauthorized) Code

Code gets the status code for the post access organization invite unauthorized response

func (*PostAccessOrganizationInviteUnauthorized) Error

func (*PostAccessOrganizationInviteUnauthorized) GetPayload

func (*PostAccessOrganizationInviteUnauthorized) IsClientError

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

func (*PostAccessOrganizationInviteUnauthorized) IsCode

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

func (*PostAccessOrganizationInviteUnauthorized) IsRedirect

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

func (*PostAccessOrganizationInviteUnauthorized) IsServerError

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

func (*PostAccessOrganizationInviteUnauthorized) IsSuccess

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

func (*PostAccessOrganizationInviteUnauthorized) String

type PostAccessOrganizationOK

type PostAccessOrganizationOK struct {
	Payload *models.ModelsOrganizationResponse
}

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

OK

func NewPostAccessOrganizationOK

func NewPostAccessOrganizationOK() *PostAccessOrganizationOK

NewPostAccessOrganizationOK creates a PostAccessOrganizationOK with default headers values

func (*PostAccessOrganizationOK) Code

func (o *PostAccessOrganizationOK) Code() int

Code gets the status code for the post access organization o k response

func (*PostAccessOrganizationOK) Error

func (o *PostAccessOrganizationOK) Error() string

func (*PostAccessOrganizationOK) GetPayload

func (*PostAccessOrganizationOK) IsClientError

func (o *PostAccessOrganizationOK) IsClientError() bool

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

func (*PostAccessOrganizationOK) IsCode

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

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

func (*PostAccessOrganizationOK) IsRedirect

func (o *PostAccessOrganizationOK) IsRedirect() bool

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

func (*PostAccessOrganizationOK) IsServerError

func (o *PostAccessOrganizationOK) IsServerError() bool

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

func (*PostAccessOrganizationOK) IsSuccess

func (o *PostAccessOrganizationOK) IsSuccess() bool

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

func (*PostAccessOrganizationOK) String

func (o *PostAccessOrganizationOK) String() string

type PostAccessOrganizationParams

type PostAccessOrganizationParams struct {

	/* Request.

	   Create Organization Request
	*/
	Request *models.ModelsCreateOrganizationRequest

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

PostAccessOrganizationParams contains all the parameters to send to the API endpoint

for the post access organization operation.

Typically these are written to a http.Request.

func NewPostAccessOrganizationParams

func NewPostAccessOrganizationParams() *PostAccessOrganizationParams

NewPostAccessOrganizationParams creates a new PostAccessOrganizationParams 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 NewPostAccessOrganizationParamsWithContext

func NewPostAccessOrganizationParamsWithContext(ctx context.Context) *PostAccessOrganizationParams

NewPostAccessOrganizationParamsWithContext creates a new PostAccessOrganizationParams object with the ability to set a context for a request.

func NewPostAccessOrganizationParamsWithHTTPClient

func NewPostAccessOrganizationParamsWithHTTPClient(client *http.Client) *PostAccessOrganizationParams

NewPostAccessOrganizationParamsWithHTTPClient creates a new PostAccessOrganizationParams object with the ability to set a custom HTTPClient for a request.

func NewPostAccessOrganizationParamsWithTimeout

func NewPostAccessOrganizationParamsWithTimeout(timeout time.Duration) *PostAccessOrganizationParams

NewPostAccessOrganizationParamsWithTimeout creates a new PostAccessOrganizationParams object with the ability to set a timeout on a request.

func (*PostAccessOrganizationParams) SetContext

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

SetContext adds the context to the post access organization params

func (*PostAccessOrganizationParams) SetDefaults

func (o *PostAccessOrganizationParams) SetDefaults()

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

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

func (*PostAccessOrganizationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post access organization params

func (*PostAccessOrganizationParams) SetRequest

SetRequest adds the request to the post access organization params

func (*PostAccessOrganizationParams) SetTimeout

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

SetTimeout adds the timeout to the post access organization params

func (*PostAccessOrganizationParams) WithContext

WithContext adds the context to the post access organization params

func (*PostAccessOrganizationParams) WithDefaults

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

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

func (*PostAccessOrganizationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post access organization params

func (*PostAccessOrganizationParams) WithRequest

WithRequest adds the request to the post access organization params

func (*PostAccessOrganizationParams) WithTimeout

WithTimeout adds the timeout to the post access organization params

func (*PostAccessOrganizationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAccessOrganizationReader

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

PostAccessOrganizationReader is a Reader for the PostAccessOrganization structure.

func (*PostAccessOrganizationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostAccessOrganizationUnauthorized

type PostAccessOrganizationUnauthorized struct {
	Payload string
}

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

Unauthorized

func NewPostAccessOrganizationUnauthorized

func NewPostAccessOrganizationUnauthorized() *PostAccessOrganizationUnauthorized

NewPostAccessOrganizationUnauthorized creates a PostAccessOrganizationUnauthorized with default headers values

func (*PostAccessOrganizationUnauthorized) Code

Code gets the status code for the post access organization unauthorized response

func (*PostAccessOrganizationUnauthorized) Error

func (*PostAccessOrganizationUnauthorized) GetPayload

func (*PostAccessOrganizationUnauthorized) IsClientError

func (o *PostAccessOrganizationUnauthorized) IsClientError() bool

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

func (*PostAccessOrganizationUnauthorized) IsCode

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

func (*PostAccessOrganizationUnauthorized) IsRedirect

func (o *PostAccessOrganizationUnauthorized) IsRedirect() bool

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

func (*PostAccessOrganizationUnauthorized) IsServerError

func (o *PostAccessOrganizationUnauthorized) IsServerError() bool

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

func (*PostAccessOrganizationUnauthorized) IsSuccess

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

func (*PostAccessOrganizationUnauthorized) String

Jump to

Keyboard shortcuts

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