table_management

package
v0.0.0-...-af0b780 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: Apache-2.0, 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 AlterTableOK

type AlterTableOK struct {
	Payload map[string]interface{}
}
AlterTableOK describes a response with status code 200, with default header values.

successful operation

func NewAlterTableOK

func NewAlterTableOK() *AlterTableOK

NewAlterTableOK creates a AlterTableOK with default headers values

func (*AlterTableOK) Error

func (o *AlterTableOK) Error() string

func (*AlterTableOK) GetPayload

func (o *AlterTableOK) GetPayload() map[string]interface{}

type AlterTableParams

type AlterTableParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// TableUUID.
	//
	// Format: uuid
	TableUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

AlterTableParams contains all the parameters to send to the API endpoint

for the alter table operation.

Typically these are written to a http.Request.

func NewAlterTableParams

func NewAlterTableParams() *AlterTableParams

NewAlterTableParams creates a new AlterTableParams 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 NewAlterTableParamsWithContext

func NewAlterTableParamsWithContext(ctx context.Context) *AlterTableParams

NewAlterTableParamsWithContext creates a new AlterTableParams object with the ability to set a context for a request.

func NewAlterTableParamsWithHTTPClient

func NewAlterTableParamsWithHTTPClient(client *http.Client) *AlterTableParams

NewAlterTableParamsWithHTTPClient creates a new AlterTableParams object with the ability to set a custom HTTPClient for a request.

func NewAlterTableParamsWithTimeout

func NewAlterTableParamsWithTimeout(timeout time.Duration) *AlterTableParams

NewAlterTableParamsWithTimeout creates a new AlterTableParams object with the ability to set a timeout on a request.

func (*AlterTableParams) SetCUUID

func (o *AlterTableParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the alter table params

func (*AlterTableParams) SetContext

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

SetContext adds the context to the alter table params

func (*AlterTableParams) SetDefaults

func (o *AlterTableParams) SetDefaults()

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

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

func (*AlterTableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the alter table params

func (*AlterTableParams) SetTableUUID

func (o *AlterTableParams) SetTableUUID(tableUUID strfmt.UUID)

SetTableUUID adds the tableUuid to the alter table params

func (*AlterTableParams) SetTimeout

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

SetTimeout adds the timeout to the alter table params

func (*AlterTableParams) SetUniUUID

func (o *AlterTableParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the alter table params

func (*AlterTableParams) WithCUUID

func (o *AlterTableParams) WithCUUID(cUUID strfmt.UUID) *AlterTableParams

WithCUUID adds the cUUID to the alter table params

func (*AlterTableParams) WithContext

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

WithContext adds the context to the alter table params

func (*AlterTableParams) WithDefaults

func (o *AlterTableParams) WithDefaults() *AlterTableParams

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

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

func (*AlterTableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the alter table params

func (*AlterTableParams) WithTableUUID

func (o *AlterTableParams) WithTableUUID(tableUUID strfmt.UUID) *AlterTableParams

WithTableUUID adds the tableUUID to the alter table params

func (*AlterTableParams) WithTimeout

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

WithTimeout adds the timeout to the alter table params

func (*AlterTableParams) WithUniUUID

func (o *AlterTableParams) WithUniUUID(uniUUID strfmt.UUID) *AlterTableParams

WithUniUUID adds the uniUUID to the alter table params

func (*AlterTableParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type AlterTableReader

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

AlterTableReader is a Reader for the AlterTable structure.

func (*AlterTableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type BulkImportDataOK

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

successful operation

func NewBulkImportDataOK

func NewBulkImportDataOK() *BulkImportDataOK

NewBulkImportDataOK creates a BulkImportDataOK with default headers values

func (*BulkImportDataOK) Error

func (o *BulkImportDataOK) Error() string

func (*BulkImportDataOK) GetPayload

func (o *BulkImportDataOK) GetPayload() *models.YBPTask

type BulkImportDataParams

type BulkImportDataParams struct {

	/* BulkImport.

	   Bulk data to be imported
	*/
	BulkImport *models.BulkImportParams

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// TableUUID.
	//
	// Format: uuid
	TableUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

BulkImportDataParams contains all the parameters to send to the API endpoint

for the bulk import data operation.

Typically these are written to a http.Request.

func NewBulkImportDataParams

func NewBulkImportDataParams() *BulkImportDataParams

NewBulkImportDataParams creates a new BulkImportDataParams 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 NewBulkImportDataParamsWithContext

func NewBulkImportDataParamsWithContext(ctx context.Context) *BulkImportDataParams

NewBulkImportDataParamsWithContext creates a new BulkImportDataParams object with the ability to set a context for a request.

func NewBulkImportDataParamsWithHTTPClient

func NewBulkImportDataParamsWithHTTPClient(client *http.Client) *BulkImportDataParams

NewBulkImportDataParamsWithHTTPClient creates a new BulkImportDataParams object with the ability to set a custom HTTPClient for a request.

func NewBulkImportDataParamsWithTimeout

func NewBulkImportDataParamsWithTimeout(timeout time.Duration) *BulkImportDataParams

NewBulkImportDataParamsWithTimeout creates a new BulkImportDataParams object with the ability to set a timeout on a request.

func (*BulkImportDataParams) SetBulkImport

func (o *BulkImportDataParams) SetBulkImport(bulkImport *models.BulkImportParams)

SetBulkImport adds the bulkImport to the bulk import data params

func (*BulkImportDataParams) SetCUUID

func (o *BulkImportDataParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the bulk import data params

func (*BulkImportDataParams) SetContext

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

SetContext adds the context to the bulk import data params

func (*BulkImportDataParams) SetDefaults

func (o *BulkImportDataParams) SetDefaults()

SetDefaults hydrates default values in the bulk import data params (not the query body).

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

func (*BulkImportDataParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the bulk import data params

func (*BulkImportDataParams) SetTableUUID

func (o *BulkImportDataParams) SetTableUUID(tableUUID strfmt.UUID)

SetTableUUID adds the tableUuid to the bulk import data params

func (*BulkImportDataParams) SetTimeout

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

SetTimeout adds the timeout to the bulk import data params

func (*BulkImportDataParams) SetUniUUID

func (o *BulkImportDataParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the bulk import data params

func (*BulkImportDataParams) WithBulkImport

func (o *BulkImportDataParams) WithBulkImport(bulkImport *models.BulkImportParams) *BulkImportDataParams

WithBulkImport adds the bulkImport to the bulk import data params

func (*BulkImportDataParams) WithCUUID

WithCUUID adds the cUUID to the bulk import data params

func (*BulkImportDataParams) WithContext

WithContext adds the context to the bulk import data params

func (*BulkImportDataParams) WithDefaults

func (o *BulkImportDataParams) WithDefaults() *BulkImportDataParams

WithDefaults hydrates default values in the bulk import data params (not the query body).

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

func (*BulkImportDataParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the bulk import data params

func (*BulkImportDataParams) WithTableUUID

func (o *BulkImportDataParams) WithTableUUID(tableUUID strfmt.UUID) *BulkImportDataParams

WithTableUUID adds the tableUUID to the bulk import data params

func (*BulkImportDataParams) WithTimeout

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

WithTimeout adds the timeout to the bulk import data params

func (*BulkImportDataParams) WithUniUUID

func (o *BulkImportDataParams) WithUniUUID(uniUUID strfmt.UUID) *BulkImportDataParams

WithUniUUID adds the uniUUID to the bulk import data params

func (*BulkImportDataParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type BulkImportDataReader

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

BulkImportDataReader is a Reader for the BulkImportData structure.

func (*BulkImportDataReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type Client

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

Client for table management API

func (*Client) AlterTable

func (a *Client) AlterTable(params *AlterTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*AlterTableOK, error)

AlterTable alters a yugabyte d b table

func (*Client) BulkImportData

func (a *Client) BulkImportData(params *BulkImportDataParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*BulkImportDataOK, error)

BulkImportData bulks import data

Bulk import data into the specified table. This is currently AWS-only.

func (*Client) CreateSingleTableBackup

func (a *Client) CreateSingleTableBackup(params *CreateSingleTableBackupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateSingleTableBackupOK, error)

CreateSingleTableBackup creates a single table backup

func (*Client) CreateTable

func (a *Client) CreateTable(params *CreateTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateTableOK, error)

CreateTable creates a yugabyte d b table

func (*Client) CreateTableSpaces

func (a *Client) CreateTableSpaces(params *CreateTableSpacesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateTableSpacesOK, error)

CreateTableSpaces creates table spaces

func (*Client) DescribeTable

func (a *Client) DescribeTable(params *DescribeTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DescribeTableOK, error)

DescribeTable describes a table

func (*Client) DropTable

func (a *Client) DropTable(params *DropTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DropTableOK, error)

DropTable drops a yugabyte d b table

func (*Client) GetAllTableSpaces

func (a *Client) GetAllTableSpaces(params *GetAllTableSpacesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAllTableSpacesOK, error)

GetAllTableSpaces lists all tablespaces

Get a list of all tablespaces of a given universe

func (*Client) GetAllTables

func (a *Client) GetAllTables(params *GetAllTablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAllTablesOK, error)

GetAllTables lists all tables

Get a list of all tables in the specified universe

func (*Client) GetYQLDataTypes

func (a *Client) GetYQLDataTypes(params *GetYQLDataTypesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetYQLDataTypesOK, error)

GetYQLDataTypes lists column types

Get a list of all defined column types.

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 {
	AlterTable(params *AlterTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*AlterTableOK, error)

	BulkImportData(params *BulkImportDataParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*BulkImportDataOK, error)

	CreateSingleTableBackup(params *CreateSingleTableBackupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateSingleTableBackupOK, error)

	CreateTable(params *CreateTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateTableOK, error)

	CreateTableSpaces(params *CreateTableSpacesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateTableSpacesOK, error)

	DescribeTable(params *DescribeTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DescribeTableOK, error)

	DropTable(params *DropTableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DropTableOK, error)

	GetAllTableSpaces(params *GetAllTableSpacesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAllTableSpacesOK, error)

	GetAllTables(params *GetAllTablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAllTablesOK, error)

	GetYQLDataTypes(params *GetYQLDataTypesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetYQLDataTypesOK, 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 table management API client.

type CreateSingleTableBackupOK

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

successful operation

func NewCreateSingleTableBackupOK

func NewCreateSingleTableBackupOK() *CreateSingleTableBackupOK

NewCreateSingleTableBackupOK creates a CreateSingleTableBackupOK with default headers values

func (*CreateSingleTableBackupOK) Error

func (o *CreateSingleTableBackupOK) Error() string

func (*CreateSingleTableBackupOK) GetPayload

func (o *CreateSingleTableBackupOK) GetPayload() *models.YBPTask

type CreateSingleTableBackupParams

type CreateSingleTableBackupParams struct {

	/* Backup.

	   Backup data to be created
	*/
	Backup *models.BackupTableParams

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// TableUUID.
	//
	// Format: uuid
	TableUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

CreateSingleTableBackupParams contains all the parameters to send to the API endpoint

for the create single table backup operation.

Typically these are written to a http.Request.

func NewCreateSingleTableBackupParams

func NewCreateSingleTableBackupParams() *CreateSingleTableBackupParams

NewCreateSingleTableBackupParams creates a new CreateSingleTableBackupParams 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 NewCreateSingleTableBackupParamsWithContext

func NewCreateSingleTableBackupParamsWithContext(ctx context.Context) *CreateSingleTableBackupParams

NewCreateSingleTableBackupParamsWithContext creates a new CreateSingleTableBackupParams object with the ability to set a context for a request.

func NewCreateSingleTableBackupParamsWithHTTPClient

func NewCreateSingleTableBackupParamsWithHTTPClient(client *http.Client) *CreateSingleTableBackupParams

NewCreateSingleTableBackupParamsWithHTTPClient creates a new CreateSingleTableBackupParams object with the ability to set a custom HTTPClient for a request.

func NewCreateSingleTableBackupParamsWithTimeout

func NewCreateSingleTableBackupParamsWithTimeout(timeout time.Duration) *CreateSingleTableBackupParams

NewCreateSingleTableBackupParamsWithTimeout creates a new CreateSingleTableBackupParams object with the ability to set a timeout on a request.

func (*CreateSingleTableBackupParams) SetBackup

SetBackup adds the backup to the create single table backup params

func (*CreateSingleTableBackupParams) SetCUUID

func (o *CreateSingleTableBackupParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the create single table backup params

func (*CreateSingleTableBackupParams) SetContext

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

SetContext adds the context to the create single table backup params

func (*CreateSingleTableBackupParams) SetDefaults

func (o *CreateSingleTableBackupParams) SetDefaults()

SetDefaults hydrates default values in the create single table backup params (not the query body).

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

func (*CreateSingleTableBackupParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create single table backup params

func (*CreateSingleTableBackupParams) SetTableUUID

func (o *CreateSingleTableBackupParams) SetTableUUID(tableUUID strfmt.UUID)

SetTableUUID adds the tableUuid to the create single table backup params

func (*CreateSingleTableBackupParams) SetTimeout

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

SetTimeout adds the timeout to the create single table backup params

func (*CreateSingleTableBackupParams) SetUniUUID

func (o *CreateSingleTableBackupParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the create single table backup params

func (*CreateSingleTableBackupParams) WithBackup

WithBackup adds the backup to the create single table backup params

func (*CreateSingleTableBackupParams) WithCUUID

WithCUUID adds the cUUID to the create single table backup params

func (*CreateSingleTableBackupParams) WithContext

WithContext adds the context to the create single table backup params

func (*CreateSingleTableBackupParams) WithDefaults

WithDefaults hydrates default values in the create single table backup params (not the query body).

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

func (*CreateSingleTableBackupParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create single table backup params

func (*CreateSingleTableBackupParams) WithTableUUID

WithTableUUID adds the tableUUID to the create single table backup params

func (*CreateSingleTableBackupParams) WithTimeout

WithTimeout adds the timeout to the create single table backup params

func (*CreateSingleTableBackupParams) WithUniUUID

WithUniUUID adds the uniUUID to the create single table backup params

func (*CreateSingleTableBackupParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateSingleTableBackupReader

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

CreateSingleTableBackupReader is a Reader for the CreateSingleTableBackup structure.

func (*CreateSingleTableBackupReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateTableOK

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

successful operation

func NewCreateTableOK

func NewCreateTableOK() *CreateTableOK

NewCreateTableOK creates a CreateTableOK with default headers values

func (*CreateTableOK) Error

func (o *CreateTableOK) Error() string

func (*CreateTableOK) GetPayload

func (o *CreateTableOK) GetPayload() *models.YBPTask

type CreateTableParams

type CreateTableParams struct {

	/* Table.

	   Table definition to be created
	*/
	Table *models.TableDefinitionTaskParams

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

CreateTableParams contains all the parameters to send to the API endpoint

for the create table operation.

Typically these are written to a http.Request.

func NewCreateTableParams

func NewCreateTableParams() *CreateTableParams

NewCreateTableParams creates a new CreateTableParams 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 NewCreateTableParamsWithContext

func NewCreateTableParamsWithContext(ctx context.Context) *CreateTableParams

NewCreateTableParamsWithContext creates a new CreateTableParams object with the ability to set a context for a request.

func NewCreateTableParamsWithHTTPClient

func NewCreateTableParamsWithHTTPClient(client *http.Client) *CreateTableParams

NewCreateTableParamsWithHTTPClient creates a new CreateTableParams object with the ability to set a custom HTTPClient for a request.

func NewCreateTableParamsWithTimeout

func NewCreateTableParamsWithTimeout(timeout time.Duration) *CreateTableParams

NewCreateTableParamsWithTimeout creates a new CreateTableParams object with the ability to set a timeout on a request.

func (*CreateTableParams) SetCUUID

func (o *CreateTableParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the create table params

func (*CreateTableParams) SetContext

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

SetContext adds the context to the create table params

func (*CreateTableParams) SetDefaults

func (o *CreateTableParams) SetDefaults()

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

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

func (*CreateTableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create table params

func (*CreateTableParams) SetTable

SetTable adds the table to the create table params

func (*CreateTableParams) SetTimeout

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

SetTimeout adds the timeout to the create table params

func (*CreateTableParams) SetUniUUID

func (o *CreateTableParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the create table params

func (*CreateTableParams) WithCUUID

func (o *CreateTableParams) WithCUUID(cUUID strfmt.UUID) *CreateTableParams

WithCUUID adds the cUUID to the create table params

func (*CreateTableParams) WithContext

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

WithContext adds the context to the create table params

func (*CreateTableParams) WithDefaults

func (o *CreateTableParams) WithDefaults() *CreateTableParams

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

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

func (*CreateTableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create table params

func (*CreateTableParams) WithTable

WithTable adds the table to the create table params

func (*CreateTableParams) WithTimeout

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

WithTimeout adds the timeout to the create table params

func (*CreateTableParams) WithUniUUID

func (o *CreateTableParams) WithUniUUID(uniUUID strfmt.UUID) *CreateTableParams

WithUniUUID adds the uniUUID to the create table params

func (*CreateTableParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type CreateTableReader

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

CreateTableReader is a Reader for the CreateTable structure.

func (*CreateTableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateTableSpacesOK

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

successful operation

func NewCreateTableSpacesOK

func NewCreateTableSpacesOK() *CreateTableSpacesOK

NewCreateTableSpacesOK creates a CreateTableSpacesOK with default headers values

func (*CreateTableSpacesOK) Error

func (o *CreateTableSpacesOK) Error() string

func (*CreateTableSpacesOK) GetPayload

func (o *CreateTableSpacesOK) GetPayload() *models.YBPTask

type CreateTableSpacesParams

type CreateTableSpacesParams struct {

	// CreateTableSpacesRequest.
	CreateTableSpacesRequest *models.CreateTablespaceParams

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

CreateTableSpacesParams contains all the parameters to send to the API endpoint

for the create table spaces operation.

Typically these are written to a http.Request.

func NewCreateTableSpacesParams

func NewCreateTableSpacesParams() *CreateTableSpacesParams

NewCreateTableSpacesParams creates a new CreateTableSpacesParams 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 NewCreateTableSpacesParamsWithContext

func NewCreateTableSpacesParamsWithContext(ctx context.Context) *CreateTableSpacesParams

NewCreateTableSpacesParamsWithContext creates a new CreateTableSpacesParams object with the ability to set a context for a request.

func NewCreateTableSpacesParamsWithHTTPClient

func NewCreateTableSpacesParamsWithHTTPClient(client *http.Client) *CreateTableSpacesParams

NewCreateTableSpacesParamsWithHTTPClient creates a new CreateTableSpacesParams object with the ability to set a custom HTTPClient for a request.

func NewCreateTableSpacesParamsWithTimeout

func NewCreateTableSpacesParamsWithTimeout(timeout time.Duration) *CreateTableSpacesParams

NewCreateTableSpacesParamsWithTimeout creates a new CreateTableSpacesParams object with the ability to set a timeout on a request.

func (*CreateTableSpacesParams) SetCUUID

func (o *CreateTableSpacesParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the create table spaces params

func (*CreateTableSpacesParams) SetContext

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

SetContext adds the context to the create table spaces params

func (*CreateTableSpacesParams) SetCreateTableSpacesRequest

func (o *CreateTableSpacesParams) SetCreateTableSpacesRequest(createTableSpacesRequest *models.CreateTablespaceParams)

SetCreateTableSpacesRequest adds the createTableSpacesRequest to the create table spaces params

func (*CreateTableSpacesParams) SetDefaults

func (o *CreateTableSpacesParams) SetDefaults()

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

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

func (*CreateTableSpacesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create table spaces params

func (*CreateTableSpacesParams) SetTimeout

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

SetTimeout adds the timeout to the create table spaces params

func (*CreateTableSpacesParams) SetUniUUID

func (o *CreateTableSpacesParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the create table spaces params

func (*CreateTableSpacesParams) WithCUUID

WithCUUID adds the cUUID to the create table spaces params

func (*CreateTableSpacesParams) WithContext

WithContext adds the context to the create table spaces params

func (*CreateTableSpacesParams) WithCreateTableSpacesRequest

func (o *CreateTableSpacesParams) WithCreateTableSpacesRequest(createTableSpacesRequest *models.CreateTablespaceParams) *CreateTableSpacesParams

WithCreateTableSpacesRequest adds the createTableSpacesRequest to the create table spaces params

func (*CreateTableSpacesParams) WithDefaults

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

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

func (*CreateTableSpacesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create table spaces params

func (*CreateTableSpacesParams) WithTimeout

WithTimeout adds the timeout to the create table spaces params

func (*CreateTableSpacesParams) WithUniUUID

WithUniUUID adds the uniUUID to the create table spaces params

func (*CreateTableSpacesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateTableSpacesReader

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

CreateTableSpacesReader is a Reader for the CreateTableSpaces structure.

func (*CreateTableSpacesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DescribeTableOK

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

successful operation

func NewDescribeTableOK

func NewDescribeTableOK() *DescribeTableOK

NewDescribeTableOK creates a DescribeTableOK with default headers values

func (*DescribeTableOK) Error

func (o *DescribeTableOK) Error() string

func (*DescribeTableOK) GetPayload

type DescribeTableParams

type DescribeTableParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// TableUUID.
	//
	// Format: uuid
	TableUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

DescribeTableParams contains all the parameters to send to the API endpoint

for the describe table operation.

Typically these are written to a http.Request.

func NewDescribeTableParams

func NewDescribeTableParams() *DescribeTableParams

NewDescribeTableParams creates a new DescribeTableParams 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 NewDescribeTableParamsWithContext

func NewDescribeTableParamsWithContext(ctx context.Context) *DescribeTableParams

NewDescribeTableParamsWithContext creates a new DescribeTableParams object with the ability to set a context for a request.

func NewDescribeTableParamsWithHTTPClient

func NewDescribeTableParamsWithHTTPClient(client *http.Client) *DescribeTableParams

NewDescribeTableParamsWithHTTPClient creates a new DescribeTableParams object with the ability to set a custom HTTPClient for a request.

func NewDescribeTableParamsWithTimeout

func NewDescribeTableParamsWithTimeout(timeout time.Duration) *DescribeTableParams

NewDescribeTableParamsWithTimeout creates a new DescribeTableParams object with the ability to set a timeout on a request.

func (*DescribeTableParams) SetCUUID

func (o *DescribeTableParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the describe table params

func (*DescribeTableParams) SetContext

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

SetContext adds the context to the describe table params

func (*DescribeTableParams) SetDefaults

func (o *DescribeTableParams) SetDefaults()

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

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

func (*DescribeTableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the describe table params

func (*DescribeTableParams) SetTableUUID

func (o *DescribeTableParams) SetTableUUID(tableUUID strfmt.UUID)

SetTableUUID adds the tableUuid to the describe table params

func (*DescribeTableParams) SetTimeout

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

SetTimeout adds the timeout to the describe table params

func (*DescribeTableParams) SetUniUUID

func (o *DescribeTableParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the describe table params

func (*DescribeTableParams) WithCUUID

func (o *DescribeTableParams) WithCUUID(cUUID strfmt.UUID) *DescribeTableParams

WithCUUID adds the cUUID to the describe table params

func (*DescribeTableParams) WithContext

WithContext adds the context to the describe table params

func (*DescribeTableParams) WithDefaults

func (o *DescribeTableParams) WithDefaults() *DescribeTableParams

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

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

func (*DescribeTableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the describe table params

func (*DescribeTableParams) WithTableUUID

func (o *DescribeTableParams) WithTableUUID(tableUUID strfmt.UUID) *DescribeTableParams

WithTableUUID adds the tableUUID to the describe table params

func (*DescribeTableParams) WithTimeout

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

WithTimeout adds the timeout to the describe table params

func (*DescribeTableParams) WithUniUUID

func (o *DescribeTableParams) WithUniUUID(uniUUID strfmt.UUID) *DescribeTableParams

WithUniUUID adds the uniUUID to the describe table params

func (*DescribeTableParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DescribeTableReader

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

DescribeTableReader is a Reader for the DescribeTable structure.

func (*DescribeTableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DropTableOK

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

successful operation

func NewDropTableOK

func NewDropTableOK() *DropTableOK

NewDropTableOK creates a DropTableOK with default headers values

func (*DropTableOK) Error

func (o *DropTableOK) Error() string

func (*DropTableOK) GetPayload

func (o *DropTableOK) GetPayload() *models.YBPTask

type DropTableParams

type DropTableParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// TableUUID.
	//
	// Format: uuid
	TableUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

DropTableParams contains all the parameters to send to the API endpoint

for the drop table operation.

Typically these are written to a http.Request.

func NewDropTableParams

func NewDropTableParams() *DropTableParams

NewDropTableParams creates a new DropTableParams 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 NewDropTableParamsWithContext

func NewDropTableParamsWithContext(ctx context.Context) *DropTableParams

NewDropTableParamsWithContext creates a new DropTableParams object with the ability to set a context for a request.

func NewDropTableParamsWithHTTPClient

func NewDropTableParamsWithHTTPClient(client *http.Client) *DropTableParams

NewDropTableParamsWithHTTPClient creates a new DropTableParams object with the ability to set a custom HTTPClient for a request.

func NewDropTableParamsWithTimeout

func NewDropTableParamsWithTimeout(timeout time.Duration) *DropTableParams

NewDropTableParamsWithTimeout creates a new DropTableParams object with the ability to set a timeout on a request.

func (*DropTableParams) SetCUUID

func (o *DropTableParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the drop table params

func (*DropTableParams) SetContext

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

SetContext adds the context to the drop table params

func (*DropTableParams) SetDefaults

func (o *DropTableParams) SetDefaults()

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

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

func (*DropTableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the drop table params

func (*DropTableParams) SetTableUUID

func (o *DropTableParams) SetTableUUID(tableUUID strfmt.UUID)

SetTableUUID adds the tableUuid to the drop table params

func (*DropTableParams) SetTimeout

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

SetTimeout adds the timeout to the drop table params

func (*DropTableParams) SetUniUUID

func (o *DropTableParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the drop table params

func (*DropTableParams) WithCUUID

func (o *DropTableParams) WithCUUID(cUUID strfmt.UUID) *DropTableParams

WithCUUID adds the cUUID to the drop table params

func (*DropTableParams) WithContext

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

WithContext adds the context to the drop table params

func (*DropTableParams) WithDefaults

func (o *DropTableParams) WithDefaults() *DropTableParams

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

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

func (*DropTableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the drop table params

func (*DropTableParams) WithTableUUID

func (o *DropTableParams) WithTableUUID(tableUUID strfmt.UUID) *DropTableParams

WithTableUUID adds the tableUUID to the drop table params

func (*DropTableParams) WithTimeout

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

WithTimeout adds the timeout to the drop table params

func (*DropTableParams) WithUniUUID

func (o *DropTableParams) WithUniUUID(uniUUID strfmt.UUID) *DropTableParams

WithUniUUID adds the uniUUID to the drop table params

func (*DropTableParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DropTableReader

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

DropTableReader is a Reader for the DropTable structure.

func (*DropTableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAllTableSpacesOK

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

successful operation

func NewGetAllTableSpacesOK

func NewGetAllTableSpacesOK() *GetAllTableSpacesOK

NewGetAllTableSpacesOK creates a GetAllTableSpacesOK with default headers values

func (*GetAllTableSpacesOK) Error

func (o *GetAllTableSpacesOK) Error() string

func (*GetAllTableSpacesOK) GetPayload

func (o *GetAllTableSpacesOK) GetPayload() []*models.TableSpaceInfo

type GetAllTableSpacesParams

type GetAllTableSpacesParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

GetAllTableSpacesParams contains all the parameters to send to the API endpoint

for the get all table spaces operation.

Typically these are written to a http.Request.

func NewGetAllTableSpacesParams

func NewGetAllTableSpacesParams() *GetAllTableSpacesParams

NewGetAllTableSpacesParams creates a new GetAllTableSpacesParams 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 NewGetAllTableSpacesParamsWithContext

func NewGetAllTableSpacesParamsWithContext(ctx context.Context) *GetAllTableSpacesParams

NewGetAllTableSpacesParamsWithContext creates a new GetAllTableSpacesParams object with the ability to set a context for a request.

func NewGetAllTableSpacesParamsWithHTTPClient

func NewGetAllTableSpacesParamsWithHTTPClient(client *http.Client) *GetAllTableSpacesParams

NewGetAllTableSpacesParamsWithHTTPClient creates a new GetAllTableSpacesParams object with the ability to set a custom HTTPClient for a request.

func NewGetAllTableSpacesParamsWithTimeout

func NewGetAllTableSpacesParamsWithTimeout(timeout time.Duration) *GetAllTableSpacesParams

NewGetAllTableSpacesParamsWithTimeout creates a new GetAllTableSpacesParams object with the ability to set a timeout on a request.

func (*GetAllTableSpacesParams) SetCUUID

func (o *GetAllTableSpacesParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the get all table spaces params

func (*GetAllTableSpacesParams) SetContext

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

SetContext adds the context to the get all table spaces params

func (*GetAllTableSpacesParams) SetDefaults

func (o *GetAllTableSpacesParams) SetDefaults()

SetDefaults hydrates default values in the get all table spaces params (not the query body).

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

func (*GetAllTableSpacesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get all table spaces params

func (*GetAllTableSpacesParams) SetTimeout

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

SetTimeout adds the timeout to the get all table spaces params

func (*GetAllTableSpacesParams) SetUniUUID

func (o *GetAllTableSpacesParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the get all table spaces params

func (*GetAllTableSpacesParams) WithCUUID

WithCUUID adds the cUUID to the get all table spaces params

func (*GetAllTableSpacesParams) WithContext

WithContext adds the context to the get all table spaces params

func (*GetAllTableSpacesParams) WithDefaults

WithDefaults hydrates default values in the get all table spaces params (not the query body).

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

func (*GetAllTableSpacesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get all table spaces params

func (*GetAllTableSpacesParams) WithTimeout

WithTimeout adds the timeout to the get all table spaces params

func (*GetAllTableSpacesParams) WithUniUUID

WithUniUUID adds the uniUUID to the get all table spaces params

func (*GetAllTableSpacesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAllTableSpacesReader

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

GetAllTableSpacesReader is a Reader for the GetAllTableSpaces structure.

func (*GetAllTableSpacesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAllTablesOK

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

successful operation

func NewGetAllTablesOK

func NewGetAllTablesOK() *GetAllTablesOK

NewGetAllTablesOK creates a GetAllTablesOK with default headers values

func (*GetAllTablesOK) Error

func (o *GetAllTablesOK) Error() string

func (*GetAllTablesOK) GetPayload

func (o *GetAllTablesOK) GetPayload() []*models.TableInfoResp

type GetAllTablesParams

type GetAllTablesParams struct {

	// CUUID.
	//
	// Format: uuid
	CUUID strfmt.UUID

	// IncludeParentTableInfo.
	IncludeParentTableInfo *bool

	// UniUUID.
	//
	// Format: uuid
	UniUUID strfmt.UUID

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

GetAllTablesParams contains all the parameters to send to the API endpoint

for the get all tables operation.

Typically these are written to a http.Request.

func NewGetAllTablesParams

func NewGetAllTablesParams() *GetAllTablesParams

NewGetAllTablesParams creates a new GetAllTablesParams 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 NewGetAllTablesParamsWithContext

func NewGetAllTablesParamsWithContext(ctx context.Context) *GetAllTablesParams

NewGetAllTablesParamsWithContext creates a new GetAllTablesParams object with the ability to set a context for a request.

func NewGetAllTablesParamsWithHTTPClient

func NewGetAllTablesParamsWithHTTPClient(client *http.Client) *GetAllTablesParams

NewGetAllTablesParamsWithHTTPClient creates a new GetAllTablesParams object with the ability to set a custom HTTPClient for a request.

func NewGetAllTablesParamsWithTimeout

func NewGetAllTablesParamsWithTimeout(timeout time.Duration) *GetAllTablesParams

NewGetAllTablesParamsWithTimeout creates a new GetAllTablesParams object with the ability to set a timeout on a request.

func (*GetAllTablesParams) SetCUUID

func (o *GetAllTablesParams) SetCUUID(cUUID strfmt.UUID)

SetCUUID adds the cUuid to the get all tables params

func (*GetAllTablesParams) SetContext

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

SetContext adds the context to the get all tables params

func (*GetAllTablesParams) SetDefaults

func (o *GetAllTablesParams) SetDefaults()

SetDefaults hydrates default values in the get all tables params (not the query body).

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

func (*GetAllTablesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get all tables params

func (*GetAllTablesParams) SetIncludeParentTableInfo

func (o *GetAllTablesParams) SetIncludeParentTableInfo(includeParentTableInfo *bool)

SetIncludeParentTableInfo adds the includeParentTableInfo to the get all tables params

func (*GetAllTablesParams) SetTimeout

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

SetTimeout adds the timeout to the get all tables params

func (*GetAllTablesParams) SetUniUUID

func (o *GetAllTablesParams) SetUniUUID(uniUUID strfmt.UUID)

SetUniUUID adds the uniUuid to the get all tables params

func (*GetAllTablesParams) WithCUUID

func (o *GetAllTablesParams) WithCUUID(cUUID strfmt.UUID) *GetAllTablesParams

WithCUUID adds the cUUID to the get all tables params

func (*GetAllTablesParams) WithContext

WithContext adds the context to the get all tables params

func (*GetAllTablesParams) WithDefaults

func (o *GetAllTablesParams) WithDefaults() *GetAllTablesParams

WithDefaults hydrates default values in the get all tables params (not the query body).

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

func (*GetAllTablesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get all tables params

func (*GetAllTablesParams) WithIncludeParentTableInfo

func (o *GetAllTablesParams) WithIncludeParentTableInfo(includeParentTableInfo *bool) *GetAllTablesParams

WithIncludeParentTableInfo adds the includeParentTableInfo to the get all tables params

func (*GetAllTablesParams) WithTimeout

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

WithTimeout adds the timeout to the get all tables params

func (*GetAllTablesParams) WithUniUUID

func (o *GetAllTablesParams) WithUniUUID(uniUUID strfmt.UUID) *GetAllTablesParams

WithUniUUID adds the uniUUID to the get all tables params

func (*GetAllTablesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAllTablesReader

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

GetAllTablesReader is a Reader for the GetAllTables structure.

func (*GetAllTablesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetYQLDataTypesOK

type GetYQLDataTypesOK struct {
	Payload []string
}
GetYQLDataTypesOK describes a response with status code 200, with default header values.

successful operation

func NewGetYQLDataTypesOK

func NewGetYQLDataTypesOK() *GetYQLDataTypesOK

NewGetYQLDataTypesOK creates a GetYQLDataTypesOK with default headers values

func (*GetYQLDataTypesOK) Error

func (o *GetYQLDataTypesOK) Error() string

func (*GetYQLDataTypesOK) GetPayload

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

type GetYQLDataTypesParams

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

GetYQLDataTypesParams contains all the parameters to send to the API endpoint

for the get y q l data types operation.

Typically these are written to a http.Request.

func NewGetYQLDataTypesParams

func NewGetYQLDataTypesParams() *GetYQLDataTypesParams

NewGetYQLDataTypesParams creates a new GetYQLDataTypesParams 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 NewGetYQLDataTypesParamsWithContext

func NewGetYQLDataTypesParamsWithContext(ctx context.Context) *GetYQLDataTypesParams

NewGetYQLDataTypesParamsWithContext creates a new GetYQLDataTypesParams object with the ability to set a context for a request.

func NewGetYQLDataTypesParamsWithHTTPClient

func NewGetYQLDataTypesParamsWithHTTPClient(client *http.Client) *GetYQLDataTypesParams

NewGetYQLDataTypesParamsWithHTTPClient creates a new GetYQLDataTypesParams object with the ability to set a custom HTTPClient for a request.

func NewGetYQLDataTypesParamsWithTimeout

func NewGetYQLDataTypesParamsWithTimeout(timeout time.Duration) *GetYQLDataTypesParams

NewGetYQLDataTypesParamsWithTimeout creates a new GetYQLDataTypesParams object with the ability to set a timeout on a request.

func (*GetYQLDataTypesParams) SetContext

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

SetContext adds the context to the get y q l data types params

func (*GetYQLDataTypesParams) SetDefaults

func (o *GetYQLDataTypesParams) SetDefaults()

SetDefaults hydrates default values in the get y q l data types params (not the query body).

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

func (*GetYQLDataTypesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get y q l data types params

func (*GetYQLDataTypesParams) SetTimeout

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

SetTimeout adds the timeout to the get y q l data types params

func (*GetYQLDataTypesParams) WithContext

WithContext adds the context to the get y q l data types params

func (*GetYQLDataTypesParams) WithDefaults

func (o *GetYQLDataTypesParams) WithDefaults() *GetYQLDataTypesParams

WithDefaults hydrates default values in the get y q l data types params (not the query body).

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

func (*GetYQLDataTypesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get y q l data types params

func (*GetYQLDataTypesParams) WithTimeout

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

WithTimeout adds the timeout to the get y q l data types params

func (*GetYQLDataTypesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetYQLDataTypesReader

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

GetYQLDataTypesReader is a Reader for the GetYQLDataTypes structure.

func (*GetYQLDataTypesReader) ReadResponse

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