onboarding_blueprints

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Nov 17, 2022 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for onboarding blueprints API

func (*Client) CreateBlueprint

func (a *Client) CreateBlueprint(params *CreateBlueprintParams, opts ...ClientOption) (*CreateBlueprintOK, error)

CreateBlueprint creates an onboarding blueprints

func (*Client) CreateBlueprintByID

func (a *Client) CreateBlueprintByID(params *CreateBlueprintByIDParams, opts ...ClientOption) (*CreateBlueprintByIDOK, error)

CreateBlueprintByID gets the selected onboarding blueprint

func (*Client) DeleteBlueprintByID

func (a *Client) DeleteBlueprintByID(params *DeleteBlueprintByIDParams, opts ...ClientOption) (*DeleteBlueprintByIDOK, error)

DeleteBlueprintByID deletes the selected onboarding blueprint

func (*Client) QueryBlueprints

func (a *Client) QueryBlueprints(params *QueryBlueprintsParams, opts ...ClientOption) (*QueryBlueprintsOK, error)

QueryBlueprints queries for onboarding blueprints

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateBlueprintByID

func (a *Client) UpdateBlueprintByID(params *UpdateBlueprintByIDParams, opts ...ClientOption) (*UpdateBlueprintByIDOK, error)

UpdateBlueprintByID updates the selected onboarding blueprint

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateBlueprint(params *CreateBlueprintParams, opts ...ClientOption) (*CreateBlueprintOK, error)

	CreateBlueprintByID(params *CreateBlueprintByIDParams, opts ...ClientOption) (*CreateBlueprintByIDOK, error)

	DeleteBlueprintByID(params *DeleteBlueprintByIDParams, opts ...ClientOption) (*DeleteBlueprintByIDOK, error)

	QueryBlueprints(params *QueryBlueprintsParams, opts ...ClientOption) (*QueryBlueprintsOK, error)

	UpdateBlueprintByID(params *UpdateBlueprintByIDParams, opts ...ClientOption) (*UpdateBlueprintByIDOK, 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 onboarding blueprints API client.

type CreateBlueprintByIDOK

type CreateBlueprintByIDOK struct {
	Payload *models.OnboardingBlueprintResponse
}

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

Success

func NewCreateBlueprintByIDOK

func NewCreateBlueprintByIDOK() *CreateBlueprintByIDOK

NewCreateBlueprintByIDOK creates a CreateBlueprintByIDOK with default headers values

func (*CreateBlueprintByIDOK) Error

func (o *CreateBlueprintByIDOK) Error() string

func (*CreateBlueprintByIDOK) GetPayload

func (*CreateBlueprintByIDOK) IsClientError

func (o *CreateBlueprintByIDOK) IsClientError() bool

IsClientError returns true when this create blueprint by Id o k response has a 4xx status code

func (*CreateBlueprintByIDOK) IsCode

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

IsCode returns true when this create blueprint by Id o k response a status code equal to that given

func (*CreateBlueprintByIDOK) IsRedirect

func (o *CreateBlueprintByIDOK) IsRedirect() bool

IsRedirect returns true when this create blueprint by Id o k response has a 3xx status code

func (*CreateBlueprintByIDOK) IsServerError

func (o *CreateBlueprintByIDOK) IsServerError() bool

IsServerError returns true when this create blueprint by Id o k response has a 5xx status code

func (*CreateBlueprintByIDOK) IsSuccess

func (o *CreateBlueprintByIDOK) IsSuccess() bool

IsSuccess returns true when this create blueprint by Id o k response has a 2xx status code

func (*CreateBlueprintByIDOK) String

func (o *CreateBlueprintByIDOK) String() string

type CreateBlueprintByIDParams

type CreateBlueprintByIDParams struct {

	// ID.
	ID string

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

CreateBlueprintByIDParams contains all the parameters to send to the API endpoint

for the create blueprint by Id operation.

Typically these are written to a http.Request.

func NewCreateBlueprintByIDParams

func NewCreateBlueprintByIDParams() *CreateBlueprintByIDParams

NewCreateBlueprintByIDParams creates a new CreateBlueprintByIDParams 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 NewCreateBlueprintByIDParamsWithContext

func NewCreateBlueprintByIDParamsWithContext(ctx context.Context) *CreateBlueprintByIDParams

NewCreateBlueprintByIDParamsWithContext creates a new CreateBlueprintByIDParams object with the ability to set a context for a request.

func NewCreateBlueprintByIDParamsWithHTTPClient

func NewCreateBlueprintByIDParamsWithHTTPClient(client *http.Client) *CreateBlueprintByIDParams

NewCreateBlueprintByIDParamsWithHTTPClient creates a new CreateBlueprintByIDParams object with the ability to set a custom HTTPClient for a request.

func NewCreateBlueprintByIDParamsWithTimeout

func NewCreateBlueprintByIDParamsWithTimeout(timeout time.Duration) *CreateBlueprintByIDParams

NewCreateBlueprintByIDParamsWithTimeout creates a new CreateBlueprintByIDParams object with the ability to set a timeout on a request.

func (*CreateBlueprintByIDParams) SetContext

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

SetContext adds the context to the create blueprint by Id params

func (*CreateBlueprintByIDParams) SetDefaults

func (o *CreateBlueprintByIDParams) SetDefaults()

SetDefaults hydrates default values in the create blueprint by Id params (not the query body).

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

func (*CreateBlueprintByIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create blueprint by Id params

func (*CreateBlueprintByIDParams) SetID

func (o *CreateBlueprintByIDParams) SetID(id string)

SetID adds the id to the create blueprint by Id params

func (*CreateBlueprintByIDParams) SetTimeout

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

SetTimeout adds the timeout to the create blueprint by Id params

func (*CreateBlueprintByIDParams) WithContext

WithContext adds the context to the create blueprint by Id params

func (*CreateBlueprintByIDParams) WithDefaults

WithDefaults hydrates default values in the create blueprint by Id params (not the query body).

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

func (*CreateBlueprintByIDParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create blueprint by Id params

func (*CreateBlueprintByIDParams) WithID

WithID adds the id to the create blueprint by Id params

func (*CreateBlueprintByIDParams) WithTimeout

WithTimeout adds the timeout to the create blueprint by Id params

func (*CreateBlueprintByIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateBlueprintByIDReader

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

CreateBlueprintByIDReader is a Reader for the CreateBlueprintByID structure.

func (*CreateBlueprintByIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateBlueprintByIDUnauthorized

type CreateBlueprintByIDUnauthorized struct {
}

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

Unauthorized

func NewCreateBlueprintByIDUnauthorized

func NewCreateBlueprintByIDUnauthorized() *CreateBlueprintByIDUnauthorized

NewCreateBlueprintByIDUnauthorized creates a CreateBlueprintByIDUnauthorized with default headers values

func (*CreateBlueprintByIDUnauthorized) Error

func (*CreateBlueprintByIDUnauthorized) IsClientError

func (o *CreateBlueprintByIDUnauthorized) IsClientError() bool

IsClientError returns true when this create blueprint by Id unauthorized response has a 4xx status code

func (*CreateBlueprintByIDUnauthorized) IsCode

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

IsCode returns true when this create blueprint by Id unauthorized response a status code equal to that given

func (*CreateBlueprintByIDUnauthorized) IsRedirect

func (o *CreateBlueprintByIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this create blueprint by Id unauthorized response has a 3xx status code

func (*CreateBlueprintByIDUnauthorized) IsServerError

func (o *CreateBlueprintByIDUnauthorized) IsServerError() bool

IsServerError returns true when this create blueprint by Id unauthorized response has a 5xx status code

func (*CreateBlueprintByIDUnauthorized) IsSuccess

func (o *CreateBlueprintByIDUnauthorized) IsSuccess() bool

IsSuccess returns true when this create blueprint by Id unauthorized response has a 2xx status code

func (*CreateBlueprintByIDUnauthorized) String

type CreateBlueprintOK

type CreateBlueprintOK struct {
	Payload *models.OnboardingBlueprintResponse
}

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

Success

func NewCreateBlueprintOK

func NewCreateBlueprintOK() *CreateBlueprintOK

NewCreateBlueprintOK creates a CreateBlueprintOK with default headers values

func (*CreateBlueprintOK) Error

func (o *CreateBlueprintOK) Error() string

func (*CreateBlueprintOK) GetPayload

func (*CreateBlueprintOK) IsClientError

func (o *CreateBlueprintOK) IsClientError() bool

IsClientError returns true when this create blueprint o k response has a 4xx status code

func (*CreateBlueprintOK) IsCode

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

IsCode returns true when this create blueprint o k response a status code equal to that given

func (*CreateBlueprintOK) IsRedirect

func (o *CreateBlueprintOK) IsRedirect() bool

IsRedirect returns true when this create blueprint o k response has a 3xx status code

func (*CreateBlueprintOK) IsServerError

func (o *CreateBlueprintOK) IsServerError() bool

IsServerError returns true when this create blueprint o k response has a 5xx status code

func (*CreateBlueprintOK) IsSuccess

func (o *CreateBlueprintOK) IsSuccess() bool

IsSuccess returns true when this create blueprint o k response has a 2xx status code

func (*CreateBlueprintOK) String

func (o *CreateBlueprintOK) String() string

type CreateBlueprintParams

type CreateBlueprintParams struct {

	// Body.
	Body *models.OnboardingBlueprintRequest

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

CreateBlueprintParams contains all the parameters to send to the API endpoint

for the create blueprint operation.

Typically these are written to a http.Request.

func NewCreateBlueprintParams

func NewCreateBlueprintParams() *CreateBlueprintParams

NewCreateBlueprintParams creates a new CreateBlueprintParams 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 NewCreateBlueprintParamsWithContext

func NewCreateBlueprintParamsWithContext(ctx context.Context) *CreateBlueprintParams

NewCreateBlueprintParamsWithContext creates a new CreateBlueprintParams object with the ability to set a context for a request.

func NewCreateBlueprintParamsWithHTTPClient

func NewCreateBlueprintParamsWithHTTPClient(client *http.Client) *CreateBlueprintParams

NewCreateBlueprintParamsWithHTTPClient creates a new CreateBlueprintParams object with the ability to set a custom HTTPClient for a request.

func NewCreateBlueprintParamsWithTimeout

func NewCreateBlueprintParamsWithTimeout(timeout time.Duration) *CreateBlueprintParams

NewCreateBlueprintParamsWithTimeout creates a new CreateBlueprintParams object with the ability to set a timeout on a request.

func (*CreateBlueprintParams) SetBody

SetBody adds the body to the create blueprint params

func (*CreateBlueprintParams) SetContext

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

SetContext adds the context to the create blueprint params

func (*CreateBlueprintParams) SetDefaults

func (o *CreateBlueprintParams) SetDefaults()

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

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

func (*CreateBlueprintParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create blueprint params

func (*CreateBlueprintParams) SetTimeout

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

SetTimeout adds the timeout to the create blueprint params

func (*CreateBlueprintParams) WithBody

WithBody adds the body to the create blueprint params

func (*CreateBlueprintParams) WithContext

WithContext adds the context to the create blueprint params

func (*CreateBlueprintParams) WithDefaults

func (o *CreateBlueprintParams) WithDefaults() *CreateBlueprintParams

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

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

func (*CreateBlueprintParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create blueprint params

func (*CreateBlueprintParams) WithTimeout

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

WithTimeout adds the timeout to the create blueprint params

func (*CreateBlueprintParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateBlueprintReader

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

CreateBlueprintReader is a Reader for the CreateBlueprint structure.

func (*CreateBlueprintReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateBlueprintUnauthorized

type CreateBlueprintUnauthorized struct {
}

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

Unauthorized

func NewCreateBlueprintUnauthorized

func NewCreateBlueprintUnauthorized() *CreateBlueprintUnauthorized

NewCreateBlueprintUnauthorized creates a CreateBlueprintUnauthorized with default headers values

func (*CreateBlueprintUnauthorized) Error

func (*CreateBlueprintUnauthorized) IsClientError

func (o *CreateBlueprintUnauthorized) IsClientError() bool

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

func (*CreateBlueprintUnauthorized) IsCode

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

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

func (*CreateBlueprintUnauthorized) IsRedirect

func (o *CreateBlueprintUnauthorized) IsRedirect() bool

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

func (*CreateBlueprintUnauthorized) IsServerError

func (o *CreateBlueprintUnauthorized) IsServerError() bool

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

func (*CreateBlueprintUnauthorized) IsSuccess

func (o *CreateBlueprintUnauthorized) IsSuccess() bool

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

func (*CreateBlueprintUnauthorized) String

func (o *CreateBlueprintUnauthorized) String() string

type DeleteBlueprintByIDOK

type DeleteBlueprintByIDOK struct {
}

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

Success

func NewDeleteBlueprintByIDOK

func NewDeleteBlueprintByIDOK() *DeleteBlueprintByIDOK

NewDeleteBlueprintByIDOK creates a DeleteBlueprintByIDOK with default headers values

func (*DeleteBlueprintByIDOK) Error

func (o *DeleteBlueprintByIDOK) Error() string

func (*DeleteBlueprintByIDOK) IsClientError

func (o *DeleteBlueprintByIDOK) IsClientError() bool

IsClientError returns true when this delete blueprint by Id o k response has a 4xx status code

func (*DeleteBlueprintByIDOK) IsCode

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

IsCode returns true when this delete blueprint by Id o k response a status code equal to that given

func (*DeleteBlueprintByIDOK) IsRedirect

func (o *DeleteBlueprintByIDOK) IsRedirect() bool

IsRedirect returns true when this delete blueprint by Id o k response has a 3xx status code

func (*DeleteBlueprintByIDOK) IsServerError

func (o *DeleteBlueprintByIDOK) IsServerError() bool

IsServerError returns true when this delete blueprint by Id o k response has a 5xx status code

func (*DeleteBlueprintByIDOK) IsSuccess

func (o *DeleteBlueprintByIDOK) IsSuccess() bool

IsSuccess returns true when this delete blueprint by Id o k response has a 2xx status code

func (*DeleteBlueprintByIDOK) String

func (o *DeleteBlueprintByIDOK) String() string

type DeleteBlueprintByIDParams

type DeleteBlueprintByIDParams struct {

	// ID.
	ID string

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

DeleteBlueprintByIDParams contains all the parameters to send to the API endpoint

for the delete blueprint by Id operation.

Typically these are written to a http.Request.

func NewDeleteBlueprintByIDParams

func NewDeleteBlueprintByIDParams() *DeleteBlueprintByIDParams

NewDeleteBlueprintByIDParams creates a new DeleteBlueprintByIDParams 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 NewDeleteBlueprintByIDParamsWithContext

func NewDeleteBlueprintByIDParamsWithContext(ctx context.Context) *DeleteBlueprintByIDParams

NewDeleteBlueprintByIDParamsWithContext creates a new DeleteBlueprintByIDParams object with the ability to set a context for a request.

func NewDeleteBlueprintByIDParamsWithHTTPClient

func NewDeleteBlueprintByIDParamsWithHTTPClient(client *http.Client) *DeleteBlueprintByIDParams

NewDeleteBlueprintByIDParamsWithHTTPClient creates a new DeleteBlueprintByIDParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteBlueprintByIDParamsWithTimeout

func NewDeleteBlueprintByIDParamsWithTimeout(timeout time.Duration) *DeleteBlueprintByIDParams

NewDeleteBlueprintByIDParamsWithTimeout creates a new DeleteBlueprintByIDParams object with the ability to set a timeout on a request.

func (*DeleteBlueprintByIDParams) SetContext

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

SetContext adds the context to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) SetDefaults

func (o *DeleteBlueprintByIDParams) SetDefaults()

SetDefaults hydrates default values in the delete blueprint by Id params (not the query body).

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

func (*DeleteBlueprintByIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) SetID

func (o *DeleteBlueprintByIDParams) SetID(id string)

SetID adds the id to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) SetTimeout

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

SetTimeout adds the timeout to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) WithContext

WithContext adds the context to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) WithDefaults

WithDefaults hydrates default values in the delete blueprint by Id params (not the query body).

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

func (*DeleteBlueprintByIDParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) WithID

WithID adds the id to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) WithTimeout

WithTimeout adds the timeout to the delete blueprint by Id params

func (*DeleteBlueprintByIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteBlueprintByIDReader

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

DeleteBlueprintByIDReader is a Reader for the DeleteBlueprintByID structure.

func (*DeleteBlueprintByIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteBlueprintByIDUnauthorized

type DeleteBlueprintByIDUnauthorized struct {
}

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

Unauthorized

func NewDeleteBlueprintByIDUnauthorized

func NewDeleteBlueprintByIDUnauthorized() *DeleteBlueprintByIDUnauthorized

NewDeleteBlueprintByIDUnauthorized creates a DeleteBlueprintByIDUnauthorized with default headers values

func (*DeleteBlueprintByIDUnauthorized) Error

func (*DeleteBlueprintByIDUnauthorized) IsClientError

func (o *DeleteBlueprintByIDUnauthorized) IsClientError() bool

IsClientError returns true when this delete blueprint by Id unauthorized response has a 4xx status code

func (*DeleteBlueprintByIDUnauthorized) IsCode

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

IsCode returns true when this delete blueprint by Id unauthorized response a status code equal to that given

func (*DeleteBlueprintByIDUnauthorized) IsRedirect

func (o *DeleteBlueprintByIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete blueprint by Id unauthorized response has a 3xx status code

func (*DeleteBlueprintByIDUnauthorized) IsServerError

func (o *DeleteBlueprintByIDUnauthorized) IsServerError() bool

IsServerError returns true when this delete blueprint by Id unauthorized response has a 5xx status code

func (*DeleteBlueprintByIDUnauthorized) IsSuccess

func (o *DeleteBlueprintByIDUnauthorized) IsSuccess() bool

IsSuccess returns true when this delete blueprint by Id unauthorized response has a 2xx status code

func (*DeleteBlueprintByIDUnauthorized) String

type QueryBlueprintsOK

type QueryBlueprintsOK struct {
	Payload *models.ServiceDocumentQueryResult
}

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

Success

func NewQueryBlueprintsOK

func NewQueryBlueprintsOK() *QueryBlueprintsOK

NewQueryBlueprintsOK creates a QueryBlueprintsOK with default headers values

func (*QueryBlueprintsOK) Error

func (o *QueryBlueprintsOK) Error() string

func (*QueryBlueprintsOK) GetPayload

func (*QueryBlueprintsOK) IsClientError

func (o *QueryBlueprintsOK) IsClientError() bool

IsClientError returns true when this query blueprints o k response has a 4xx status code

func (*QueryBlueprintsOK) IsCode

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

IsCode returns true when this query blueprints o k response a status code equal to that given

func (*QueryBlueprintsOK) IsRedirect

func (o *QueryBlueprintsOK) IsRedirect() bool

IsRedirect returns true when this query blueprints o k response has a 3xx status code

func (*QueryBlueprintsOK) IsServerError

func (o *QueryBlueprintsOK) IsServerError() bool

IsServerError returns true when this query blueprints o k response has a 5xx status code

func (*QueryBlueprintsOK) IsSuccess

func (o *QueryBlueprintsOK) IsSuccess() bool

IsSuccess returns true when this query blueprints o k response has a 2xx status code

func (*QueryBlueprintsOK) String

func (o *QueryBlueprintsOK) String() string

type QueryBlueprintsParams

type QueryBlueprintsParams struct {

	/* DollarExpand.

	   Expand document contents
	*/
	DollarExpand *bool

	/* DollarFilter.

	   OData filter expression
	*/
	DollarFilter *string

	/* DollarLimit.

	   Set maximum number of documents to return in this query
	*/
	DollarLimit *int64

	/* DollarSelect.

	   Comma-separated list of fields to populate in query result
	*/
	DollarSelect *string

	/* DollarTenantLinks.

	   Comma-separated list
	*/
	DollarTenantLinks *string

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

QueryBlueprintsParams contains all the parameters to send to the API endpoint

for the query blueprints operation.

Typically these are written to a http.Request.

func NewQueryBlueprintsParams

func NewQueryBlueprintsParams() *QueryBlueprintsParams

NewQueryBlueprintsParams creates a new QueryBlueprintsParams 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 NewQueryBlueprintsParamsWithContext

func NewQueryBlueprintsParamsWithContext(ctx context.Context) *QueryBlueprintsParams

NewQueryBlueprintsParamsWithContext creates a new QueryBlueprintsParams object with the ability to set a context for a request.

func NewQueryBlueprintsParamsWithHTTPClient

func NewQueryBlueprintsParamsWithHTTPClient(client *http.Client) *QueryBlueprintsParams

NewQueryBlueprintsParamsWithHTTPClient creates a new QueryBlueprintsParams object with the ability to set a custom HTTPClient for a request.

func NewQueryBlueprintsParamsWithTimeout

func NewQueryBlueprintsParamsWithTimeout(timeout time.Duration) *QueryBlueprintsParams

NewQueryBlueprintsParamsWithTimeout creates a new QueryBlueprintsParams object with the ability to set a timeout on a request.

func (*QueryBlueprintsParams) SetContext

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

SetContext adds the context to the query blueprints params

func (*QueryBlueprintsParams) SetDefaults

func (o *QueryBlueprintsParams) SetDefaults()

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

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

func (*QueryBlueprintsParams) SetDollarExpand

func (o *QueryBlueprintsParams) SetDollarExpand(dollarExpand *bool)

SetDollarExpand adds the dollarExpand to the query blueprints params

func (*QueryBlueprintsParams) SetDollarFilter

func (o *QueryBlueprintsParams) SetDollarFilter(dollarFilter *string)

SetDollarFilter adds the dollarFilter to the query blueprints params

func (*QueryBlueprintsParams) SetDollarLimit

func (o *QueryBlueprintsParams) SetDollarLimit(dollarLimit *int64)

SetDollarLimit adds the dollarLimit to the query blueprints params

func (*QueryBlueprintsParams) SetDollarSelect

func (o *QueryBlueprintsParams) SetDollarSelect(dollarSelect *string)

SetDollarSelect adds the dollarSelect to the query blueprints params

func (o *QueryBlueprintsParams) SetDollarTenantLinks(dollarTenantLinks *string)

SetDollarTenantLinks adds the dollarTenantLinks to the query blueprints params

func (*QueryBlueprintsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query blueprints params

func (*QueryBlueprintsParams) SetTimeout

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

SetTimeout adds the timeout to the query blueprints params

func (*QueryBlueprintsParams) WithContext

WithContext adds the context to the query blueprints params

func (*QueryBlueprintsParams) WithDefaults

func (o *QueryBlueprintsParams) WithDefaults() *QueryBlueprintsParams

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

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

func (*QueryBlueprintsParams) WithDollarExpand

func (o *QueryBlueprintsParams) WithDollarExpand(dollarExpand *bool) *QueryBlueprintsParams

WithDollarExpand adds the dollarExpand to the query blueprints params

func (*QueryBlueprintsParams) WithDollarFilter

func (o *QueryBlueprintsParams) WithDollarFilter(dollarFilter *string) *QueryBlueprintsParams

WithDollarFilter adds the dollarFilter to the query blueprints params

func (*QueryBlueprintsParams) WithDollarLimit

func (o *QueryBlueprintsParams) WithDollarLimit(dollarLimit *int64) *QueryBlueprintsParams

WithDollarLimit adds the dollarLimit to the query blueprints params

func (*QueryBlueprintsParams) WithDollarSelect

func (o *QueryBlueprintsParams) WithDollarSelect(dollarSelect *string) *QueryBlueprintsParams

WithDollarSelect adds the dollarSelect to the query blueprints params

func (o *QueryBlueprintsParams) WithDollarTenantLinks(dollarTenantLinks *string) *QueryBlueprintsParams

WithDollarTenantLinks adds the dollarTenantLinks to the query blueprints params

func (*QueryBlueprintsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query blueprints params

func (*QueryBlueprintsParams) WithTimeout

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

WithTimeout adds the timeout to the query blueprints params

func (*QueryBlueprintsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type QueryBlueprintsReader

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

QueryBlueprintsReader is a Reader for the QueryBlueprints structure.

func (*QueryBlueprintsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryBlueprintsUnauthorized

type QueryBlueprintsUnauthorized struct {
}

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

Unauthorized

func NewQueryBlueprintsUnauthorized

func NewQueryBlueprintsUnauthorized() *QueryBlueprintsUnauthorized

NewQueryBlueprintsUnauthorized creates a QueryBlueprintsUnauthorized with default headers values

func (*QueryBlueprintsUnauthorized) Error

func (*QueryBlueprintsUnauthorized) IsClientError

func (o *QueryBlueprintsUnauthorized) IsClientError() bool

IsClientError returns true when this query blueprints unauthorized response has a 4xx status code

func (*QueryBlueprintsUnauthorized) IsCode

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

IsCode returns true when this query blueprints unauthorized response a status code equal to that given

func (*QueryBlueprintsUnauthorized) IsRedirect

func (o *QueryBlueprintsUnauthorized) IsRedirect() bool

IsRedirect returns true when this query blueprints unauthorized response has a 3xx status code

func (*QueryBlueprintsUnauthorized) IsServerError

func (o *QueryBlueprintsUnauthorized) IsServerError() bool

IsServerError returns true when this query blueprints unauthorized response has a 5xx status code

func (*QueryBlueprintsUnauthorized) IsSuccess

func (o *QueryBlueprintsUnauthorized) IsSuccess() bool

IsSuccess returns true when this query blueprints unauthorized response has a 2xx status code

func (*QueryBlueprintsUnauthorized) String

func (o *QueryBlueprintsUnauthorized) String() string

type UpdateBlueprintByIDOK

type UpdateBlueprintByIDOK struct {
}

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

Success

func NewUpdateBlueprintByIDOK

func NewUpdateBlueprintByIDOK() *UpdateBlueprintByIDOK

NewUpdateBlueprintByIDOK creates a UpdateBlueprintByIDOK with default headers values

func (*UpdateBlueprintByIDOK) Error

func (o *UpdateBlueprintByIDOK) Error() string

func (*UpdateBlueprintByIDOK) IsClientError

func (o *UpdateBlueprintByIDOK) IsClientError() bool

IsClientError returns true when this update blueprint by Id o k response has a 4xx status code

func (*UpdateBlueprintByIDOK) IsCode

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

IsCode returns true when this update blueprint by Id o k response a status code equal to that given

func (*UpdateBlueprintByIDOK) IsRedirect

func (o *UpdateBlueprintByIDOK) IsRedirect() bool

IsRedirect returns true when this update blueprint by Id o k response has a 3xx status code

func (*UpdateBlueprintByIDOK) IsServerError

func (o *UpdateBlueprintByIDOK) IsServerError() bool

IsServerError returns true when this update blueprint by Id o k response has a 5xx status code

func (*UpdateBlueprintByIDOK) IsSuccess

func (o *UpdateBlueprintByIDOK) IsSuccess() bool

IsSuccess returns true when this update blueprint by Id o k response has a 2xx status code

func (*UpdateBlueprintByIDOK) String

func (o *UpdateBlueprintByIDOK) String() string

type UpdateBlueprintByIDParams

type UpdateBlueprintByIDParams struct {

	// ID.
	ID string

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

UpdateBlueprintByIDParams contains all the parameters to send to the API endpoint

for the update blueprint by Id operation.

Typically these are written to a http.Request.

func NewUpdateBlueprintByIDParams

func NewUpdateBlueprintByIDParams() *UpdateBlueprintByIDParams

NewUpdateBlueprintByIDParams creates a new UpdateBlueprintByIDParams 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 NewUpdateBlueprintByIDParamsWithContext

func NewUpdateBlueprintByIDParamsWithContext(ctx context.Context) *UpdateBlueprintByIDParams

NewUpdateBlueprintByIDParamsWithContext creates a new UpdateBlueprintByIDParams object with the ability to set a context for a request.

func NewUpdateBlueprintByIDParamsWithHTTPClient

func NewUpdateBlueprintByIDParamsWithHTTPClient(client *http.Client) *UpdateBlueprintByIDParams

NewUpdateBlueprintByIDParamsWithHTTPClient creates a new UpdateBlueprintByIDParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateBlueprintByIDParamsWithTimeout

func NewUpdateBlueprintByIDParamsWithTimeout(timeout time.Duration) *UpdateBlueprintByIDParams

NewUpdateBlueprintByIDParamsWithTimeout creates a new UpdateBlueprintByIDParams object with the ability to set a timeout on a request.

func (*UpdateBlueprintByIDParams) SetContext

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

SetContext adds the context to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) SetDefaults

func (o *UpdateBlueprintByIDParams) SetDefaults()

SetDefaults hydrates default values in the update blueprint by Id params (not the query body).

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

func (*UpdateBlueprintByIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) SetID

func (o *UpdateBlueprintByIDParams) SetID(id string)

SetID adds the id to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) SetTimeout

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

SetTimeout adds the timeout to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) WithContext

WithContext adds the context to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) WithDefaults

WithDefaults hydrates default values in the update blueprint by Id params (not the query body).

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

func (*UpdateBlueprintByIDParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) WithID

WithID adds the id to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) WithTimeout

WithTimeout adds the timeout to the update blueprint by Id params

func (*UpdateBlueprintByIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateBlueprintByIDReader

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

UpdateBlueprintByIDReader is a Reader for the UpdateBlueprintByID structure.

func (*UpdateBlueprintByIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateBlueprintByIDUnauthorized

type UpdateBlueprintByIDUnauthorized struct {
}

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

Unauthorized

func NewUpdateBlueprintByIDUnauthorized

func NewUpdateBlueprintByIDUnauthorized() *UpdateBlueprintByIDUnauthorized

NewUpdateBlueprintByIDUnauthorized creates a UpdateBlueprintByIDUnauthorized with default headers values

func (*UpdateBlueprintByIDUnauthorized) Error

func (*UpdateBlueprintByIDUnauthorized) IsClientError

func (o *UpdateBlueprintByIDUnauthorized) IsClientError() bool

IsClientError returns true when this update blueprint by Id unauthorized response has a 4xx status code

func (*UpdateBlueprintByIDUnauthorized) IsCode

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

IsCode returns true when this update blueprint by Id unauthorized response a status code equal to that given

func (*UpdateBlueprintByIDUnauthorized) IsRedirect

func (o *UpdateBlueprintByIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this update blueprint by Id unauthorized response has a 3xx status code

func (*UpdateBlueprintByIDUnauthorized) IsServerError

func (o *UpdateBlueprintByIDUnauthorized) IsServerError() bool

IsServerError returns true when this update blueprint by Id unauthorized response has a 5xx status code

func (*UpdateBlueprintByIDUnauthorized) IsSuccess

func (o *UpdateBlueprintByIDUnauthorized) IsSuccess() bool

IsSuccess returns true when this update blueprint by Id unauthorized response has a 2xx status code

func (*UpdateBlueprintByIDUnauthorized) String

Jump to

Keyboard shortcuts

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