brick_topo

package
v1.10.0 Latest Latest
Warning

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

Go to latest
Published: May 13, 2022 License: ISC 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 brick topo API

func (*Client) CreateBrickTopo

func (a *Client) CreateBrickTopo(params *CreateBrickTopoParams, opts ...ClientOption) (*CreateBrickTopoOK, error)

CreateBrickTopo create brick topo API

func (*Client) DeleteBrickTopo

func (a *Client) DeleteBrickTopo(params *DeleteBrickTopoParams, opts ...ClientOption) (*DeleteBrickTopoOK, error)

DeleteBrickTopo delete brick topo API

func (*Client) GetBrickTopoes

func (a *Client) GetBrickTopoes(params *GetBrickTopoesParams, opts ...ClientOption) (*GetBrickTopoesOK, error)

GetBrickTopoes get brick topoes API

func (*Client) GetBrickTopoesConnection

func (a *Client) GetBrickTopoesConnection(params *GetBrickTopoesConnectionParams, opts ...ClientOption) (*GetBrickTopoesConnectionOK, error)

GetBrickTopoesConnection get brick topoes connection API

func (*Client) MoveBrickTopo

func (a *Client) MoveBrickTopo(params *MoveBrickTopoParams, opts ...ClientOption) (*MoveBrickTopoOK, error)

MoveBrickTopo move brick topo API

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateBrickTopo

func (a *Client) UpdateBrickTopo(params *UpdateBrickTopoParams, opts ...ClientOption) (*UpdateBrickTopoOK, error)

UpdateBrickTopo update brick topo API

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateBrickTopo(params *CreateBrickTopoParams, opts ...ClientOption) (*CreateBrickTopoOK, error)

	DeleteBrickTopo(params *DeleteBrickTopoParams, opts ...ClientOption) (*DeleteBrickTopoOK, error)

	GetBrickTopoes(params *GetBrickTopoesParams, opts ...ClientOption) (*GetBrickTopoesOK, error)

	GetBrickTopoesConnection(params *GetBrickTopoesConnectionParams, opts ...ClientOption) (*GetBrickTopoesConnectionOK, error)

	MoveBrickTopo(params *MoveBrickTopoParams, opts ...ClientOption) (*MoveBrickTopoOK, error)

	UpdateBrickTopo(params *UpdateBrickTopoParams, opts ...ClientOption) (*UpdateBrickTopoOK, 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 brick topo API client.

type CreateBrickTopoBadRequest

type CreateBrickTopoBadRequest struct {
	Payload *models.ErrorBody
}
CreateBrickTopoBadRequest describes a response with status code 400, with default header values.

Bad request

func NewCreateBrickTopoBadRequest

func NewCreateBrickTopoBadRequest() *CreateBrickTopoBadRequest

NewCreateBrickTopoBadRequest creates a CreateBrickTopoBadRequest with default headers values

func (*CreateBrickTopoBadRequest) Error

func (o *CreateBrickTopoBadRequest) Error() string

func (*CreateBrickTopoBadRequest) GetPayload

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

type CreateBrickTopoInternalServerError added in v1.10.0

type CreateBrickTopoInternalServerError struct {
	Payload *models.ErrorBody
}
CreateBrickTopoInternalServerError describes a response with status code 500, with default header values.

Server error

func NewCreateBrickTopoInternalServerError added in v1.10.0

func NewCreateBrickTopoInternalServerError() *CreateBrickTopoInternalServerError

NewCreateBrickTopoInternalServerError creates a CreateBrickTopoInternalServerError with default headers values

func (*CreateBrickTopoInternalServerError) Error added in v1.10.0

func (*CreateBrickTopoInternalServerError) GetPayload added in v1.10.0

type CreateBrickTopoNotFound added in v1.10.0

type CreateBrickTopoNotFound struct {
	Payload *models.ErrorBody
}
CreateBrickTopoNotFound describes a response with status code 404, with default header values.

Not found

func NewCreateBrickTopoNotFound added in v1.10.0

func NewCreateBrickTopoNotFound() *CreateBrickTopoNotFound

NewCreateBrickTopoNotFound creates a CreateBrickTopoNotFound with default headers values

func (*CreateBrickTopoNotFound) Error added in v1.10.0

func (o *CreateBrickTopoNotFound) Error() string

func (*CreateBrickTopoNotFound) GetPayload added in v1.10.0

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

type CreateBrickTopoOK

type CreateBrickTopoOK struct {
	Payload []*models.WithTaskBrickTopo
}
CreateBrickTopoOK describes a response with status code 200, with default header values.

Ok

func NewCreateBrickTopoOK

func NewCreateBrickTopoOK() *CreateBrickTopoOK

NewCreateBrickTopoOK creates a CreateBrickTopoOK with default headers values

func (*CreateBrickTopoOK) Error

func (o *CreateBrickTopoOK) Error() string

func (*CreateBrickTopoOK) GetPayload

func (o *CreateBrickTopoOK) GetPayload() []*models.WithTaskBrickTopo

type CreateBrickTopoParams

type CreateBrickTopoParams struct {

	// ContentLanguage.
	//
	// Default: "en-US"
	ContentLanguage *string

	// RequestBody.
	RequestBody []*models.BrickTopoCreationParams

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

CreateBrickTopoParams contains all the parameters to send to the API endpoint

for the create brick topo operation.

Typically these are written to a http.Request.

func NewCreateBrickTopoParams

func NewCreateBrickTopoParams() *CreateBrickTopoParams

NewCreateBrickTopoParams creates a new CreateBrickTopoParams 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 NewCreateBrickTopoParamsWithContext

func NewCreateBrickTopoParamsWithContext(ctx context.Context) *CreateBrickTopoParams

NewCreateBrickTopoParamsWithContext creates a new CreateBrickTopoParams object with the ability to set a context for a request.

func NewCreateBrickTopoParamsWithHTTPClient

func NewCreateBrickTopoParamsWithHTTPClient(client *http.Client) *CreateBrickTopoParams

NewCreateBrickTopoParamsWithHTTPClient creates a new CreateBrickTopoParams object with the ability to set a custom HTTPClient for a request.

func NewCreateBrickTopoParamsWithTimeout

func NewCreateBrickTopoParamsWithTimeout(timeout time.Duration) *CreateBrickTopoParams

NewCreateBrickTopoParamsWithTimeout creates a new CreateBrickTopoParams object with the ability to set a timeout on a request.

func (*CreateBrickTopoParams) SetContentLanguage

func (o *CreateBrickTopoParams) SetContentLanguage(contentLanguage *string)

SetContentLanguage adds the contentLanguage to the create brick topo params

func (*CreateBrickTopoParams) SetContext

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

SetContext adds the context to the create brick topo params

func (*CreateBrickTopoParams) SetDefaults

func (o *CreateBrickTopoParams) SetDefaults()

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

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

func (*CreateBrickTopoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create brick topo params

func (*CreateBrickTopoParams) SetRequestBody

func (o *CreateBrickTopoParams) SetRequestBody(requestBody []*models.BrickTopoCreationParams)

SetRequestBody adds the requestBody to the create brick topo params

func (*CreateBrickTopoParams) SetTimeout

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

SetTimeout adds the timeout to the create brick topo params

func (*CreateBrickTopoParams) WithContentLanguage

func (o *CreateBrickTopoParams) WithContentLanguage(contentLanguage *string) *CreateBrickTopoParams

WithContentLanguage adds the contentLanguage to the create brick topo params

func (*CreateBrickTopoParams) WithContext

WithContext adds the context to the create brick topo params

func (*CreateBrickTopoParams) WithDefaults

func (o *CreateBrickTopoParams) WithDefaults() *CreateBrickTopoParams

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

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

func (*CreateBrickTopoParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create brick topo params

func (*CreateBrickTopoParams) WithRequestBody

func (o *CreateBrickTopoParams) WithRequestBody(requestBody []*models.BrickTopoCreationParams) *CreateBrickTopoParams

WithRequestBody adds the requestBody to the create brick topo params

func (*CreateBrickTopoParams) WithTimeout

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

WithTimeout adds the timeout to the create brick topo params

func (*CreateBrickTopoParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateBrickTopoReader

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

CreateBrickTopoReader is a Reader for the CreateBrickTopo structure.

func (*CreateBrickTopoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteBrickTopoBadRequest

type DeleteBrickTopoBadRequest struct {
	Payload *models.ErrorBody
}
DeleteBrickTopoBadRequest describes a response with status code 400, with default header values.

Bad request

func NewDeleteBrickTopoBadRequest

func NewDeleteBrickTopoBadRequest() *DeleteBrickTopoBadRequest

NewDeleteBrickTopoBadRequest creates a DeleteBrickTopoBadRequest with default headers values

func (*DeleteBrickTopoBadRequest) Error

func (o *DeleteBrickTopoBadRequest) Error() string

func (*DeleteBrickTopoBadRequest) GetPayload

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

type DeleteBrickTopoInternalServerError added in v1.10.0

type DeleteBrickTopoInternalServerError struct {
	Payload *models.ErrorBody
}
DeleteBrickTopoInternalServerError describes a response with status code 500, with default header values.

Server error

func NewDeleteBrickTopoInternalServerError added in v1.10.0

func NewDeleteBrickTopoInternalServerError() *DeleteBrickTopoInternalServerError

NewDeleteBrickTopoInternalServerError creates a DeleteBrickTopoInternalServerError with default headers values

func (*DeleteBrickTopoInternalServerError) Error added in v1.10.0

func (*DeleteBrickTopoInternalServerError) GetPayload added in v1.10.0

type DeleteBrickTopoNotFound added in v1.10.0

type DeleteBrickTopoNotFound struct {
	Payload *models.ErrorBody
}
DeleteBrickTopoNotFound describes a response with status code 404, with default header values.

Not found

func NewDeleteBrickTopoNotFound added in v1.10.0

func NewDeleteBrickTopoNotFound() *DeleteBrickTopoNotFound

NewDeleteBrickTopoNotFound creates a DeleteBrickTopoNotFound with default headers values

func (*DeleteBrickTopoNotFound) Error added in v1.10.0

func (o *DeleteBrickTopoNotFound) Error() string

func (*DeleteBrickTopoNotFound) GetPayload added in v1.10.0

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

type DeleteBrickTopoOK

type DeleteBrickTopoOK struct {
	Payload []*models.WithTaskDeleteBrickTopo
}
DeleteBrickTopoOK describes a response with status code 200, with default header values.

Ok

func NewDeleteBrickTopoOK

func NewDeleteBrickTopoOK() *DeleteBrickTopoOK

NewDeleteBrickTopoOK creates a DeleteBrickTopoOK with default headers values

func (*DeleteBrickTopoOK) Error

func (o *DeleteBrickTopoOK) Error() string

func (*DeleteBrickTopoOK) GetPayload

type DeleteBrickTopoParams

type DeleteBrickTopoParams struct {

	// ContentLanguage.
	//
	// Default: "en-US"
	ContentLanguage *string

	// RequestBody.
	RequestBody *models.BrickTopoDeletionParams

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

DeleteBrickTopoParams contains all the parameters to send to the API endpoint

for the delete brick topo operation.

Typically these are written to a http.Request.

func NewDeleteBrickTopoParams

func NewDeleteBrickTopoParams() *DeleteBrickTopoParams

NewDeleteBrickTopoParams creates a new DeleteBrickTopoParams 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 NewDeleteBrickTopoParamsWithContext

func NewDeleteBrickTopoParamsWithContext(ctx context.Context) *DeleteBrickTopoParams

NewDeleteBrickTopoParamsWithContext creates a new DeleteBrickTopoParams object with the ability to set a context for a request.

func NewDeleteBrickTopoParamsWithHTTPClient

func NewDeleteBrickTopoParamsWithHTTPClient(client *http.Client) *DeleteBrickTopoParams

NewDeleteBrickTopoParamsWithHTTPClient creates a new DeleteBrickTopoParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteBrickTopoParamsWithTimeout

func NewDeleteBrickTopoParamsWithTimeout(timeout time.Duration) *DeleteBrickTopoParams

NewDeleteBrickTopoParamsWithTimeout creates a new DeleteBrickTopoParams object with the ability to set a timeout on a request.

func (*DeleteBrickTopoParams) SetContentLanguage

func (o *DeleteBrickTopoParams) SetContentLanguage(contentLanguage *string)

SetContentLanguage adds the contentLanguage to the delete brick topo params

func (*DeleteBrickTopoParams) SetContext

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

SetContext adds the context to the delete brick topo params

func (*DeleteBrickTopoParams) SetDefaults

func (o *DeleteBrickTopoParams) SetDefaults()

SetDefaults hydrates default values in the delete brick topo params (not the query body).

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

func (*DeleteBrickTopoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete brick topo params

func (*DeleteBrickTopoParams) SetRequestBody

func (o *DeleteBrickTopoParams) SetRequestBody(requestBody *models.BrickTopoDeletionParams)

SetRequestBody adds the requestBody to the delete brick topo params

func (*DeleteBrickTopoParams) SetTimeout

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

SetTimeout adds the timeout to the delete brick topo params

func (*DeleteBrickTopoParams) WithContentLanguage

func (o *DeleteBrickTopoParams) WithContentLanguage(contentLanguage *string) *DeleteBrickTopoParams

WithContentLanguage adds the contentLanguage to the delete brick topo params

func (*DeleteBrickTopoParams) WithContext

WithContext adds the context to the delete brick topo params

func (*DeleteBrickTopoParams) WithDefaults

func (o *DeleteBrickTopoParams) WithDefaults() *DeleteBrickTopoParams

WithDefaults hydrates default values in the delete brick topo params (not the query body).

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

func (*DeleteBrickTopoParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete brick topo params

func (*DeleteBrickTopoParams) WithRequestBody

WithRequestBody adds the requestBody to the delete brick topo params

func (*DeleteBrickTopoParams) WithTimeout

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

WithTimeout adds the timeout to the delete brick topo params

func (*DeleteBrickTopoParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeleteBrickTopoReader

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

DeleteBrickTopoReader is a Reader for the DeleteBrickTopo structure.

func (*DeleteBrickTopoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetBrickTopoesBadRequest

type GetBrickTopoesBadRequest struct {
	Payload *models.ErrorBody
}
GetBrickTopoesBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGetBrickTopoesBadRequest

func NewGetBrickTopoesBadRequest() *GetBrickTopoesBadRequest

NewGetBrickTopoesBadRequest creates a GetBrickTopoesBadRequest with default headers values

func (*GetBrickTopoesBadRequest) Error

func (o *GetBrickTopoesBadRequest) Error() string

func (*GetBrickTopoesBadRequest) GetPayload

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

type GetBrickTopoesConnectionBadRequest

type GetBrickTopoesConnectionBadRequest struct {
	Payload *models.ErrorBody
}
GetBrickTopoesConnectionBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGetBrickTopoesConnectionBadRequest

func NewGetBrickTopoesConnectionBadRequest() *GetBrickTopoesConnectionBadRequest

NewGetBrickTopoesConnectionBadRequest creates a GetBrickTopoesConnectionBadRequest with default headers values

func (*GetBrickTopoesConnectionBadRequest) Error

func (*GetBrickTopoesConnectionBadRequest) GetPayload

type GetBrickTopoesConnectionInternalServerError added in v1.10.0

type GetBrickTopoesConnectionInternalServerError struct {
	Payload *models.ErrorBody
}
GetBrickTopoesConnectionInternalServerError describes a response with status code 500, with default header values.

Server error

func NewGetBrickTopoesConnectionInternalServerError added in v1.10.0

func NewGetBrickTopoesConnectionInternalServerError() *GetBrickTopoesConnectionInternalServerError

NewGetBrickTopoesConnectionInternalServerError creates a GetBrickTopoesConnectionInternalServerError with default headers values

func (*GetBrickTopoesConnectionInternalServerError) Error added in v1.10.0

func (*GetBrickTopoesConnectionInternalServerError) GetPayload added in v1.10.0

type GetBrickTopoesConnectionNotFound added in v1.10.0

type GetBrickTopoesConnectionNotFound struct {
	Payload *models.ErrorBody
}
GetBrickTopoesConnectionNotFound describes a response with status code 404, with default header values.

Not found

func NewGetBrickTopoesConnectionNotFound added in v1.10.0

func NewGetBrickTopoesConnectionNotFound() *GetBrickTopoesConnectionNotFound

NewGetBrickTopoesConnectionNotFound creates a GetBrickTopoesConnectionNotFound with default headers values

func (*GetBrickTopoesConnectionNotFound) Error added in v1.10.0

func (*GetBrickTopoesConnectionNotFound) GetPayload added in v1.10.0

type GetBrickTopoesConnectionOK

type GetBrickTopoesConnectionOK struct {
	Payload *models.BrickTopoConnection
}
GetBrickTopoesConnectionOK describes a response with status code 200, with default header values.

Ok

func NewGetBrickTopoesConnectionOK

func NewGetBrickTopoesConnectionOK() *GetBrickTopoesConnectionOK

NewGetBrickTopoesConnectionOK creates a GetBrickTopoesConnectionOK with default headers values

func (*GetBrickTopoesConnectionOK) Error

func (*GetBrickTopoesConnectionOK) GetPayload

type GetBrickTopoesConnectionParams

type GetBrickTopoesConnectionParams struct {

	// ContentLanguage.
	//
	// Default: "en-US"
	ContentLanguage *string

	// RequestBody.
	RequestBody *models.GetBrickTopoesConnectionRequestBody

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

GetBrickTopoesConnectionParams contains all the parameters to send to the API endpoint

for the get brick topoes connection operation.

Typically these are written to a http.Request.

func NewGetBrickTopoesConnectionParams

func NewGetBrickTopoesConnectionParams() *GetBrickTopoesConnectionParams

NewGetBrickTopoesConnectionParams creates a new GetBrickTopoesConnectionParams 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 NewGetBrickTopoesConnectionParamsWithContext

func NewGetBrickTopoesConnectionParamsWithContext(ctx context.Context) *GetBrickTopoesConnectionParams

NewGetBrickTopoesConnectionParamsWithContext creates a new GetBrickTopoesConnectionParams object with the ability to set a context for a request.

func NewGetBrickTopoesConnectionParamsWithHTTPClient

func NewGetBrickTopoesConnectionParamsWithHTTPClient(client *http.Client) *GetBrickTopoesConnectionParams

NewGetBrickTopoesConnectionParamsWithHTTPClient creates a new GetBrickTopoesConnectionParams object with the ability to set a custom HTTPClient for a request.

func NewGetBrickTopoesConnectionParamsWithTimeout

func NewGetBrickTopoesConnectionParamsWithTimeout(timeout time.Duration) *GetBrickTopoesConnectionParams

NewGetBrickTopoesConnectionParamsWithTimeout creates a new GetBrickTopoesConnectionParams object with the ability to set a timeout on a request.

func (*GetBrickTopoesConnectionParams) SetContentLanguage

func (o *GetBrickTopoesConnectionParams) SetContentLanguage(contentLanguage *string)

SetContentLanguage adds the contentLanguage to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) SetContext

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

SetContext adds the context to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) SetDefaults

func (o *GetBrickTopoesConnectionParams) SetDefaults()

SetDefaults hydrates default values in the get brick topoes connection params (not the query body).

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

func (*GetBrickTopoesConnectionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) SetRequestBody

SetRequestBody adds the requestBody to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) SetTimeout

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

SetTimeout adds the timeout to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) WithContentLanguage

func (o *GetBrickTopoesConnectionParams) WithContentLanguage(contentLanguage *string) *GetBrickTopoesConnectionParams

WithContentLanguage adds the contentLanguage to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) WithContext

WithContext adds the context to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) WithDefaults

WithDefaults hydrates default values in the get brick topoes connection params (not the query body).

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

func (*GetBrickTopoesConnectionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) WithRequestBody

WithRequestBody adds the requestBody to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) WithTimeout

WithTimeout adds the timeout to the get brick topoes connection params

func (*GetBrickTopoesConnectionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetBrickTopoesConnectionReader

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

GetBrickTopoesConnectionReader is a Reader for the GetBrickTopoesConnection structure.

func (*GetBrickTopoesConnectionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetBrickTopoesInternalServerError added in v1.10.0

type GetBrickTopoesInternalServerError struct {
	Payload *models.ErrorBody
}
GetBrickTopoesInternalServerError describes a response with status code 500, with default header values.

Server error

func NewGetBrickTopoesInternalServerError added in v1.10.0

func NewGetBrickTopoesInternalServerError() *GetBrickTopoesInternalServerError

NewGetBrickTopoesInternalServerError creates a GetBrickTopoesInternalServerError with default headers values

func (*GetBrickTopoesInternalServerError) Error added in v1.10.0

func (*GetBrickTopoesInternalServerError) GetPayload added in v1.10.0

type GetBrickTopoesNotFound added in v1.10.0

type GetBrickTopoesNotFound struct {
	Payload *models.ErrorBody
}
GetBrickTopoesNotFound describes a response with status code 404, with default header values.

Not found

func NewGetBrickTopoesNotFound added in v1.10.0

func NewGetBrickTopoesNotFound() *GetBrickTopoesNotFound

NewGetBrickTopoesNotFound creates a GetBrickTopoesNotFound with default headers values

func (*GetBrickTopoesNotFound) Error added in v1.10.0

func (o *GetBrickTopoesNotFound) Error() string

func (*GetBrickTopoesNotFound) GetPayload added in v1.10.0

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

type GetBrickTopoesOK

type GetBrickTopoesOK struct {
	Payload []*models.BrickTopo
}
GetBrickTopoesOK describes a response with status code 200, with default header values.

Ok

func NewGetBrickTopoesOK

func NewGetBrickTopoesOK() *GetBrickTopoesOK

NewGetBrickTopoesOK creates a GetBrickTopoesOK with default headers values

func (*GetBrickTopoesOK) Error

func (o *GetBrickTopoesOK) Error() string

func (*GetBrickTopoesOK) GetPayload

func (o *GetBrickTopoesOK) GetPayload() []*models.BrickTopo

type GetBrickTopoesParams

type GetBrickTopoesParams struct {

	// ContentLanguage.
	//
	// Default: "en-US"
	ContentLanguage *string

	// RequestBody.
	RequestBody *models.GetBrickTopoesRequestBody

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

GetBrickTopoesParams contains all the parameters to send to the API endpoint

for the get brick topoes operation.

Typically these are written to a http.Request.

func NewGetBrickTopoesParams

func NewGetBrickTopoesParams() *GetBrickTopoesParams

NewGetBrickTopoesParams creates a new GetBrickTopoesParams 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 NewGetBrickTopoesParamsWithContext

func NewGetBrickTopoesParamsWithContext(ctx context.Context) *GetBrickTopoesParams

NewGetBrickTopoesParamsWithContext creates a new GetBrickTopoesParams object with the ability to set a context for a request.

func NewGetBrickTopoesParamsWithHTTPClient

func NewGetBrickTopoesParamsWithHTTPClient(client *http.Client) *GetBrickTopoesParams

NewGetBrickTopoesParamsWithHTTPClient creates a new GetBrickTopoesParams object with the ability to set a custom HTTPClient for a request.

func NewGetBrickTopoesParamsWithTimeout

func NewGetBrickTopoesParamsWithTimeout(timeout time.Duration) *GetBrickTopoesParams

NewGetBrickTopoesParamsWithTimeout creates a new GetBrickTopoesParams object with the ability to set a timeout on a request.

func (*GetBrickTopoesParams) SetContentLanguage

func (o *GetBrickTopoesParams) SetContentLanguage(contentLanguage *string)

SetContentLanguage adds the contentLanguage to the get brick topoes params

func (*GetBrickTopoesParams) SetContext

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

SetContext adds the context to the get brick topoes params

func (*GetBrickTopoesParams) SetDefaults

func (o *GetBrickTopoesParams) SetDefaults()

SetDefaults hydrates default values in the get brick topoes params (not the query body).

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

func (*GetBrickTopoesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get brick topoes params

func (*GetBrickTopoesParams) SetRequestBody

func (o *GetBrickTopoesParams) SetRequestBody(requestBody *models.GetBrickTopoesRequestBody)

SetRequestBody adds the requestBody to the get brick topoes params

func (*GetBrickTopoesParams) SetTimeout

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

SetTimeout adds the timeout to the get brick topoes params

func (*GetBrickTopoesParams) WithContentLanguage

func (o *GetBrickTopoesParams) WithContentLanguage(contentLanguage *string) *GetBrickTopoesParams

WithContentLanguage adds the contentLanguage to the get brick topoes params

func (*GetBrickTopoesParams) WithContext

WithContext adds the context to the get brick topoes params

func (*GetBrickTopoesParams) WithDefaults

func (o *GetBrickTopoesParams) WithDefaults() *GetBrickTopoesParams

WithDefaults hydrates default values in the get brick topoes params (not the query body).

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

func (*GetBrickTopoesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get brick topoes params

func (*GetBrickTopoesParams) WithRequestBody

WithRequestBody adds the requestBody to the get brick topoes params

func (*GetBrickTopoesParams) WithTimeout

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

WithTimeout adds the timeout to the get brick topoes params

func (*GetBrickTopoesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetBrickTopoesReader

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

GetBrickTopoesReader is a Reader for the GetBrickTopoes structure.

func (*GetBrickTopoesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type MoveBrickTopoBadRequest

type MoveBrickTopoBadRequest struct {
	Payload *models.ErrorBody
}
MoveBrickTopoBadRequest describes a response with status code 400, with default header values.

Bad request

func NewMoveBrickTopoBadRequest

func NewMoveBrickTopoBadRequest() *MoveBrickTopoBadRequest

NewMoveBrickTopoBadRequest creates a MoveBrickTopoBadRequest with default headers values

func (*MoveBrickTopoBadRequest) Error

func (o *MoveBrickTopoBadRequest) Error() string

func (*MoveBrickTopoBadRequest) GetPayload

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

type MoveBrickTopoInternalServerError added in v1.10.0

type MoveBrickTopoInternalServerError struct {
	Payload *models.ErrorBody
}
MoveBrickTopoInternalServerError describes a response with status code 500, with default header values.

Server error

func NewMoveBrickTopoInternalServerError added in v1.10.0

func NewMoveBrickTopoInternalServerError() *MoveBrickTopoInternalServerError

NewMoveBrickTopoInternalServerError creates a MoveBrickTopoInternalServerError with default headers values

func (*MoveBrickTopoInternalServerError) Error added in v1.10.0

func (*MoveBrickTopoInternalServerError) GetPayload added in v1.10.0

type MoveBrickTopoNotFound added in v1.10.0

type MoveBrickTopoNotFound struct {
	Payload *models.ErrorBody
}
MoveBrickTopoNotFound describes a response with status code 404, with default header values.

Not found

func NewMoveBrickTopoNotFound added in v1.10.0

func NewMoveBrickTopoNotFound() *MoveBrickTopoNotFound

NewMoveBrickTopoNotFound creates a MoveBrickTopoNotFound with default headers values

func (*MoveBrickTopoNotFound) Error added in v1.10.0

func (o *MoveBrickTopoNotFound) Error() string

func (*MoveBrickTopoNotFound) GetPayload added in v1.10.0

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

type MoveBrickTopoOK

type MoveBrickTopoOK struct {
	Payload []*models.WithTaskBrickTopo
}
MoveBrickTopoOK describes a response with status code 200, with default header values.

Ok

func NewMoveBrickTopoOK

func NewMoveBrickTopoOK() *MoveBrickTopoOK

NewMoveBrickTopoOK creates a MoveBrickTopoOK with default headers values

func (*MoveBrickTopoOK) Error

func (o *MoveBrickTopoOK) Error() string

func (*MoveBrickTopoOK) GetPayload

func (o *MoveBrickTopoOK) GetPayload() []*models.WithTaskBrickTopo

type MoveBrickTopoParams

type MoveBrickTopoParams struct {

	// ContentLanguage.
	//
	// Default: "en-US"
	ContentLanguage *string

	// RequestBody.
	RequestBody *models.BrickTopoMoveParams

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

MoveBrickTopoParams contains all the parameters to send to the API endpoint

for the move brick topo operation.

Typically these are written to a http.Request.

func NewMoveBrickTopoParams

func NewMoveBrickTopoParams() *MoveBrickTopoParams

NewMoveBrickTopoParams creates a new MoveBrickTopoParams 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 NewMoveBrickTopoParamsWithContext

func NewMoveBrickTopoParamsWithContext(ctx context.Context) *MoveBrickTopoParams

NewMoveBrickTopoParamsWithContext creates a new MoveBrickTopoParams object with the ability to set a context for a request.

func NewMoveBrickTopoParamsWithHTTPClient

func NewMoveBrickTopoParamsWithHTTPClient(client *http.Client) *MoveBrickTopoParams

NewMoveBrickTopoParamsWithHTTPClient creates a new MoveBrickTopoParams object with the ability to set a custom HTTPClient for a request.

func NewMoveBrickTopoParamsWithTimeout

func NewMoveBrickTopoParamsWithTimeout(timeout time.Duration) *MoveBrickTopoParams

NewMoveBrickTopoParamsWithTimeout creates a new MoveBrickTopoParams object with the ability to set a timeout on a request.

func (*MoveBrickTopoParams) SetContentLanguage

func (o *MoveBrickTopoParams) SetContentLanguage(contentLanguage *string)

SetContentLanguage adds the contentLanguage to the move brick topo params

func (*MoveBrickTopoParams) SetContext

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

SetContext adds the context to the move brick topo params

func (*MoveBrickTopoParams) SetDefaults

func (o *MoveBrickTopoParams) SetDefaults()

SetDefaults hydrates default values in the move brick topo params (not the query body).

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

func (*MoveBrickTopoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the move brick topo params

func (*MoveBrickTopoParams) SetRequestBody

func (o *MoveBrickTopoParams) SetRequestBody(requestBody *models.BrickTopoMoveParams)

SetRequestBody adds the requestBody to the move brick topo params

func (*MoveBrickTopoParams) SetTimeout

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

SetTimeout adds the timeout to the move brick topo params

func (*MoveBrickTopoParams) WithContentLanguage

func (o *MoveBrickTopoParams) WithContentLanguage(contentLanguage *string) *MoveBrickTopoParams

WithContentLanguage adds the contentLanguage to the move brick topo params

func (*MoveBrickTopoParams) WithContext

WithContext adds the context to the move brick topo params

func (*MoveBrickTopoParams) WithDefaults

func (o *MoveBrickTopoParams) WithDefaults() *MoveBrickTopoParams

WithDefaults hydrates default values in the move brick topo params (not the query body).

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

func (*MoveBrickTopoParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the move brick topo params

func (*MoveBrickTopoParams) WithRequestBody

func (o *MoveBrickTopoParams) WithRequestBody(requestBody *models.BrickTopoMoveParams) *MoveBrickTopoParams

WithRequestBody adds the requestBody to the move brick topo params

func (*MoveBrickTopoParams) WithTimeout

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

WithTimeout adds the timeout to the move brick topo params

func (*MoveBrickTopoParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type MoveBrickTopoReader

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

MoveBrickTopoReader is a Reader for the MoveBrickTopo structure.

func (*MoveBrickTopoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateBrickTopoBadRequest

type UpdateBrickTopoBadRequest struct {
	Payload *models.ErrorBody
}
UpdateBrickTopoBadRequest describes a response with status code 400, with default header values.

Bad request

func NewUpdateBrickTopoBadRequest

func NewUpdateBrickTopoBadRequest() *UpdateBrickTopoBadRequest

NewUpdateBrickTopoBadRequest creates a UpdateBrickTopoBadRequest with default headers values

func (*UpdateBrickTopoBadRequest) Error

func (o *UpdateBrickTopoBadRequest) Error() string

func (*UpdateBrickTopoBadRequest) GetPayload

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

type UpdateBrickTopoInternalServerError added in v1.10.0

type UpdateBrickTopoInternalServerError struct {
	Payload *models.ErrorBody
}
UpdateBrickTopoInternalServerError describes a response with status code 500, with default header values.

Server error

func NewUpdateBrickTopoInternalServerError added in v1.10.0

func NewUpdateBrickTopoInternalServerError() *UpdateBrickTopoInternalServerError

NewUpdateBrickTopoInternalServerError creates a UpdateBrickTopoInternalServerError with default headers values

func (*UpdateBrickTopoInternalServerError) Error added in v1.10.0

func (*UpdateBrickTopoInternalServerError) GetPayload added in v1.10.0

type UpdateBrickTopoNotFound added in v1.10.0

type UpdateBrickTopoNotFound struct {
	Payload *models.ErrorBody
}
UpdateBrickTopoNotFound describes a response with status code 404, with default header values.

Not found

func NewUpdateBrickTopoNotFound added in v1.10.0

func NewUpdateBrickTopoNotFound() *UpdateBrickTopoNotFound

NewUpdateBrickTopoNotFound creates a UpdateBrickTopoNotFound with default headers values

func (*UpdateBrickTopoNotFound) Error added in v1.10.0

func (o *UpdateBrickTopoNotFound) Error() string

func (*UpdateBrickTopoNotFound) GetPayload added in v1.10.0

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

type UpdateBrickTopoOK

type UpdateBrickTopoOK struct {
	Payload []*models.WithTaskBrickTopo
}
UpdateBrickTopoOK describes a response with status code 200, with default header values.

Ok

func NewUpdateBrickTopoOK

func NewUpdateBrickTopoOK() *UpdateBrickTopoOK

NewUpdateBrickTopoOK creates a UpdateBrickTopoOK with default headers values

func (*UpdateBrickTopoOK) Error

func (o *UpdateBrickTopoOK) Error() string

func (*UpdateBrickTopoOK) GetPayload

func (o *UpdateBrickTopoOK) GetPayload() []*models.WithTaskBrickTopo

type UpdateBrickTopoParams

type UpdateBrickTopoParams struct {

	// ContentLanguage.
	//
	// Default: "en-US"
	ContentLanguage *string

	// RequestBody.
	RequestBody *models.BrickTopoUpdationParams

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

UpdateBrickTopoParams contains all the parameters to send to the API endpoint

for the update brick topo operation.

Typically these are written to a http.Request.

func NewUpdateBrickTopoParams

func NewUpdateBrickTopoParams() *UpdateBrickTopoParams

NewUpdateBrickTopoParams creates a new UpdateBrickTopoParams 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 NewUpdateBrickTopoParamsWithContext

func NewUpdateBrickTopoParamsWithContext(ctx context.Context) *UpdateBrickTopoParams

NewUpdateBrickTopoParamsWithContext creates a new UpdateBrickTopoParams object with the ability to set a context for a request.

func NewUpdateBrickTopoParamsWithHTTPClient

func NewUpdateBrickTopoParamsWithHTTPClient(client *http.Client) *UpdateBrickTopoParams

NewUpdateBrickTopoParamsWithHTTPClient creates a new UpdateBrickTopoParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateBrickTopoParamsWithTimeout

func NewUpdateBrickTopoParamsWithTimeout(timeout time.Duration) *UpdateBrickTopoParams

NewUpdateBrickTopoParamsWithTimeout creates a new UpdateBrickTopoParams object with the ability to set a timeout on a request.

func (*UpdateBrickTopoParams) SetContentLanguage

func (o *UpdateBrickTopoParams) SetContentLanguage(contentLanguage *string)

SetContentLanguage adds the contentLanguage to the update brick topo params

func (*UpdateBrickTopoParams) SetContext

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

SetContext adds the context to the update brick topo params

func (*UpdateBrickTopoParams) SetDefaults

func (o *UpdateBrickTopoParams) SetDefaults()

SetDefaults hydrates default values in the update brick topo params (not the query body).

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

func (*UpdateBrickTopoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update brick topo params

func (*UpdateBrickTopoParams) SetRequestBody

func (o *UpdateBrickTopoParams) SetRequestBody(requestBody *models.BrickTopoUpdationParams)

SetRequestBody adds the requestBody to the update brick topo params

func (*UpdateBrickTopoParams) SetTimeout

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

SetTimeout adds the timeout to the update brick topo params

func (*UpdateBrickTopoParams) WithContentLanguage

func (o *UpdateBrickTopoParams) WithContentLanguage(contentLanguage *string) *UpdateBrickTopoParams

WithContentLanguage adds the contentLanguage to the update brick topo params

func (*UpdateBrickTopoParams) WithContext

WithContext adds the context to the update brick topo params

func (*UpdateBrickTopoParams) WithDefaults

func (o *UpdateBrickTopoParams) WithDefaults() *UpdateBrickTopoParams

WithDefaults hydrates default values in the update brick topo params (not the query body).

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

func (*UpdateBrickTopoParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update brick topo params

func (*UpdateBrickTopoParams) WithRequestBody

WithRequestBody adds the requestBody to the update brick topo params

func (*UpdateBrickTopoParams) WithTimeout

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

WithTimeout adds the timeout to the update brick topo params

func (*UpdateBrickTopoParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateBrickTopoReader

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

UpdateBrickTopoReader is a Reader for the UpdateBrickTopo structure.

func (*UpdateBrickTopoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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