vrli

package
v0.2.4 Latest Latest
Warning

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

Go to latest
Published: Mar 11, 2024 License: BSD-2-Clause 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 v r l i API

func (*Client) ConnectVrliWithDomain

ConnectVrliWithDomain connects v realize log insight with domain

func (*Client) GetIntegratedDomains1 added in v0.1.1

func (a *Client) GetIntegratedDomains1(params *GetIntegratedDomains1Params, opts ...ClientOption) (*GetIntegratedDomains1OK, error)

GetIntegratedDomains1 gets v realize log insight integration status for workload domains

func (*Client) GetVrlis added in v0.1.1

func (a *Client) GetVrlis(params *GetVrlisParams, opts ...ClientOption) (*GetVrlisOK, error)

GetVrlis gets all existing v realize log insight instances

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 {
	ConnectVrliWithDomain(params *ConnectVrliWithDomainParams, opts ...ClientOption) (*ConnectVrliWithDomainOK, *ConnectVrliWithDomainAccepted, error)

	GetIntegratedDomains1(params *GetIntegratedDomains1Params, opts ...ClientOption) (*GetIntegratedDomains1OK, error)

	GetVrlis(params *GetVrlisParams, opts ...ClientOption) (*GetVrlisOK, 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 v r l i API client.

type ConnectVrliWithDomainAccepted

type ConnectVrliWithDomainAccepted struct {
	Payload *models.Task
}

ConnectVrliWithDomainAccepted describes a response with status code 202, with default header values.

Accepted

func NewConnectVrliWithDomainAccepted

func NewConnectVrliWithDomainAccepted() *ConnectVrliWithDomainAccepted

NewConnectVrliWithDomainAccepted creates a ConnectVrliWithDomainAccepted with default headers values

func (*ConnectVrliWithDomainAccepted) Error

func (*ConnectVrliWithDomainAccepted) GetPayload

func (o *ConnectVrliWithDomainAccepted) GetPayload() *models.Task

func (*ConnectVrliWithDomainAccepted) IsClientError

func (o *ConnectVrliWithDomainAccepted) IsClientError() bool

IsClientError returns true when this connect vrli with domain accepted response has a 4xx status code

func (*ConnectVrliWithDomainAccepted) IsCode

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

IsCode returns true when this connect vrli with domain accepted response a status code equal to that given

func (*ConnectVrliWithDomainAccepted) IsRedirect

func (o *ConnectVrliWithDomainAccepted) IsRedirect() bool

IsRedirect returns true when this connect vrli with domain accepted response has a 3xx status code

func (*ConnectVrliWithDomainAccepted) IsServerError

func (o *ConnectVrliWithDomainAccepted) IsServerError() bool

IsServerError returns true when this connect vrli with domain accepted response has a 5xx status code

func (*ConnectVrliWithDomainAccepted) IsSuccess

func (o *ConnectVrliWithDomainAccepted) IsSuccess() bool

IsSuccess returns true when this connect vrli with domain accepted response has a 2xx status code

func (*ConnectVrliWithDomainAccepted) String

type ConnectVrliWithDomainOK

type ConnectVrliWithDomainOK struct {
	Payload *models.Task
}

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

OK

func NewConnectVrliWithDomainOK

func NewConnectVrliWithDomainOK() *ConnectVrliWithDomainOK

NewConnectVrliWithDomainOK creates a ConnectVrliWithDomainOK with default headers values

func (*ConnectVrliWithDomainOK) Error

func (o *ConnectVrliWithDomainOK) Error() string

func (*ConnectVrliWithDomainOK) GetPayload

func (o *ConnectVrliWithDomainOK) GetPayload() *models.Task

func (*ConnectVrliWithDomainOK) IsClientError

func (o *ConnectVrliWithDomainOK) IsClientError() bool

IsClientError returns true when this connect vrli with domain o k response has a 4xx status code

func (*ConnectVrliWithDomainOK) IsCode

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

IsCode returns true when this connect vrli with domain o k response a status code equal to that given

func (*ConnectVrliWithDomainOK) IsRedirect

func (o *ConnectVrliWithDomainOK) IsRedirect() bool

IsRedirect returns true when this connect vrli with domain o k response has a 3xx status code

func (*ConnectVrliWithDomainOK) IsServerError

func (o *ConnectVrliWithDomainOK) IsServerError() bool

IsServerError returns true when this connect vrli with domain o k response has a 5xx status code

func (*ConnectVrliWithDomainOK) IsSuccess

func (o *ConnectVrliWithDomainOK) IsSuccess() bool

IsSuccess returns true when this connect vrli with domain o k response has a 2xx status code

func (*ConnectVrliWithDomainOK) String

func (o *ConnectVrliWithDomainOK) String() string

type ConnectVrliWithDomainParams

type ConnectVrliWithDomainParams struct {

	/* DomainIntegration.

	   Domain Integration Specification
	*/
	DomainIntegration *models.DomainIntegration

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

ConnectVrliWithDomainParams contains all the parameters to send to the API endpoint

for the connect vrli with domain operation.

Typically these are written to a http.Request.

func NewConnectVrliWithDomainParams

func NewConnectVrliWithDomainParams() *ConnectVrliWithDomainParams

NewConnectVrliWithDomainParams creates a new ConnectVrliWithDomainParams 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 NewConnectVrliWithDomainParamsWithContext

func NewConnectVrliWithDomainParamsWithContext(ctx context.Context) *ConnectVrliWithDomainParams

NewConnectVrliWithDomainParamsWithContext creates a new ConnectVrliWithDomainParams object with the ability to set a context for a request.

func NewConnectVrliWithDomainParamsWithHTTPClient

func NewConnectVrliWithDomainParamsWithHTTPClient(client *http.Client) *ConnectVrliWithDomainParams

NewConnectVrliWithDomainParamsWithHTTPClient creates a new ConnectVrliWithDomainParams object with the ability to set a custom HTTPClient for a request.

func NewConnectVrliWithDomainParamsWithTimeout

func NewConnectVrliWithDomainParamsWithTimeout(timeout time.Duration) *ConnectVrliWithDomainParams

NewConnectVrliWithDomainParamsWithTimeout creates a new ConnectVrliWithDomainParams object with the ability to set a timeout on a request.

func (*ConnectVrliWithDomainParams) SetContext

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

SetContext adds the context to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) SetDefaults

func (o *ConnectVrliWithDomainParams) SetDefaults()

SetDefaults hydrates default values in the connect vrli with domain params (not the query body).

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

func (*ConnectVrliWithDomainParams) SetDomainIntegration

func (o *ConnectVrliWithDomainParams) SetDomainIntegration(domainIntegration *models.DomainIntegration)

SetDomainIntegration adds the domainIntegration to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) SetTimeout

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

SetTimeout adds the timeout to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) WithContext

WithContext adds the context to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) WithDefaults

WithDefaults hydrates default values in the connect vrli with domain params (not the query body).

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

func (*ConnectVrliWithDomainParams) WithDomainIntegration

func (o *ConnectVrliWithDomainParams) WithDomainIntegration(domainIntegration *models.DomainIntegration) *ConnectVrliWithDomainParams

WithDomainIntegration adds the domainIntegration to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) WithTimeout

WithTimeout adds the timeout to the connect vrli with domain params

func (*ConnectVrliWithDomainParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ConnectVrliWithDomainReader

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

ConnectVrliWithDomainReader is a Reader for the ConnectVrliWithDomain structure.

func (*ConnectVrliWithDomainReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetIntegratedDomains1OK added in v0.1.1

type GetIntegratedDomains1OK struct {
	Payload *models.PageOfDomainIntegration
}

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

OK

func NewGetIntegratedDomains1OK added in v0.1.1

func NewGetIntegratedDomains1OK() *GetIntegratedDomains1OK

NewGetIntegratedDomains1OK creates a GetIntegratedDomains1OK with default headers values

func (*GetIntegratedDomains1OK) Error added in v0.1.1

func (o *GetIntegratedDomains1OK) Error() string

func (*GetIntegratedDomains1OK) GetPayload added in v0.1.1

func (*GetIntegratedDomains1OK) IsClientError added in v0.1.1

func (o *GetIntegratedDomains1OK) IsClientError() bool

IsClientError returns true when this get integrated domains1 o k response has a 4xx status code

func (*GetIntegratedDomains1OK) IsCode added in v0.1.1

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

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

func (*GetIntegratedDomains1OK) IsRedirect added in v0.1.1

func (o *GetIntegratedDomains1OK) IsRedirect() bool

IsRedirect returns true when this get integrated domains1 o k response has a 3xx status code

func (*GetIntegratedDomains1OK) IsServerError added in v0.1.1

func (o *GetIntegratedDomains1OK) IsServerError() bool

IsServerError returns true when this get integrated domains1 o k response has a 5xx status code

func (*GetIntegratedDomains1OK) IsSuccess added in v0.1.1

func (o *GetIntegratedDomains1OK) IsSuccess() bool

IsSuccess returns true when this get integrated domains1 o k response has a 2xx status code

func (*GetIntegratedDomains1OK) String added in v0.1.1

func (o *GetIntegratedDomains1OK) String() string

type GetIntegratedDomains1Params added in v0.1.1

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

GetIntegratedDomains1Params contains all the parameters to send to the API endpoint

for the get integrated domains 1 operation.

Typically these are written to a http.Request.

func NewGetIntegratedDomains1Params added in v0.1.1

func NewGetIntegratedDomains1Params() *GetIntegratedDomains1Params

NewGetIntegratedDomains1Params creates a new GetIntegratedDomains1Params 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 NewGetIntegratedDomains1ParamsWithContext added in v0.1.1

func NewGetIntegratedDomains1ParamsWithContext(ctx context.Context) *GetIntegratedDomains1Params

NewGetIntegratedDomains1ParamsWithContext creates a new GetIntegratedDomains1Params object with the ability to set a context for a request.

func NewGetIntegratedDomains1ParamsWithHTTPClient added in v0.1.1

func NewGetIntegratedDomains1ParamsWithHTTPClient(client *http.Client) *GetIntegratedDomains1Params

NewGetIntegratedDomains1ParamsWithHTTPClient creates a new GetIntegratedDomains1Params object with the ability to set a custom HTTPClient for a request.

func NewGetIntegratedDomains1ParamsWithTimeout added in v0.1.1

func NewGetIntegratedDomains1ParamsWithTimeout(timeout time.Duration) *GetIntegratedDomains1Params

NewGetIntegratedDomains1ParamsWithTimeout creates a new GetIntegratedDomains1Params object with the ability to set a timeout on a request.

func (*GetIntegratedDomains1Params) SetContext added in v0.1.1

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

SetContext adds the context to the get integrated domains 1 params

func (*GetIntegratedDomains1Params) SetDefaults added in v0.1.1

func (o *GetIntegratedDomains1Params) SetDefaults()

SetDefaults hydrates default values in the get integrated domains 1 params (not the query body).

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

func (*GetIntegratedDomains1Params) SetHTTPClient added in v0.1.1

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

SetHTTPClient adds the HTTPClient to the get integrated domains 1 params

func (*GetIntegratedDomains1Params) SetTimeout added in v0.1.1

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

SetTimeout adds the timeout to the get integrated domains 1 params

func (*GetIntegratedDomains1Params) WithContext added in v0.1.1

WithContext adds the context to the get integrated domains 1 params

func (*GetIntegratedDomains1Params) WithDefaults added in v0.1.1

WithDefaults hydrates default values in the get integrated domains 1 params (not the query body).

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

func (*GetIntegratedDomains1Params) WithHTTPClient added in v0.1.1

WithHTTPClient adds the HTTPClient to the get integrated domains 1 params

func (*GetIntegratedDomains1Params) WithTimeout added in v0.1.1

WithTimeout adds the timeout to the get integrated domains 1 params

func (*GetIntegratedDomains1Params) WriteToRequest added in v0.1.1

WriteToRequest writes these params to a swagger request

type GetIntegratedDomains1Reader added in v0.1.1

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

GetIntegratedDomains1Reader is a Reader for the GetIntegratedDomains1 structure.

func (*GetIntegratedDomains1Reader) ReadResponse added in v0.1.1

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

ReadResponse reads a server response into the received o.

type GetVrlisOK added in v0.1.1

type GetVrlisOK struct {
	Payload *models.PageOfVrli
}

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

OK

func NewGetVrlisOK added in v0.1.1

func NewGetVrlisOK() *GetVrlisOK

NewGetVrlisOK creates a GetVrlisOK with default headers values

func (*GetVrlisOK) Error added in v0.1.1

func (o *GetVrlisOK) Error() string

func (*GetVrlisOK) GetPayload added in v0.1.1

func (o *GetVrlisOK) GetPayload() *models.PageOfVrli

func (*GetVrlisOK) IsClientError added in v0.1.1

func (o *GetVrlisOK) IsClientError() bool

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

func (*GetVrlisOK) IsCode added in v0.1.1

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

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

func (*GetVrlisOK) IsRedirect added in v0.1.1

func (o *GetVrlisOK) IsRedirect() bool

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

func (*GetVrlisOK) IsServerError added in v0.1.1

func (o *GetVrlisOK) IsServerError() bool

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

func (*GetVrlisOK) IsSuccess added in v0.1.1

func (o *GetVrlisOK) IsSuccess() bool

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

func (*GetVrlisOK) String added in v0.1.1

func (o *GetVrlisOK) String() string

type GetVrlisParams added in v0.1.1

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

GetVrlisParams contains all the parameters to send to the API endpoint

for the get vrlis operation.

Typically these are written to a http.Request.

func NewGetVrlisParams added in v0.1.1

func NewGetVrlisParams() *GetVrlisParams

NewGetVrlisParams creates a new GetVrlisParams 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 NewGetVrlisParamsWithContext added in v0.1.1

func NewGetVrlisParamsWithContext(ctx context.Context) *GetVrlisParams

NewGetVrlisParamsWithContext creates a new GetVrlisParams object with the ability to set a context for a request.

func NewGetVrlisParamsWithHTTPClient added in v0.1.1

func NewGetVrlisParamsWithHTTPClient(client *http.Client) *GetVrlisParams

NewGetVrlisParamsWithHTTPClient creates a new GetVrlisParams object with the ability to set a custom HTTPClient for a request.

func NewGetVrlisParamsWithTimeout added in v0.1.1

func NewGetVrlisParamsWithTimeout(timeout time.Duration) *GetVrlisParams

NewGetVrlisParamsWithTimeout creates a new GetVrlisParams object with the ability to set a timeout on a request.

func (*GetVrlisParams) SetContext added in v0.1.1

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

SetContext adds the context to the get vrlis params

func (*GetVrlisParams) SetDefaults added in v0.1.1

func (o *GetVrlisParams) SetDefaults()

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

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

func (*GetVrlisParams) SetHTTPClient added in v0.1.1

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

SetHTTPClient adds the HTTPClient to the get vrlis params

func (*GetVrlisParams) SetTimeout added in v0.1.1

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

SetTimeout adds the timeout to the get vrlis params

func (*GetVrlisParams) WithContext added in v0.1.1

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

WithContext adds the context to the get vrlis params

func (*GetVrlisParams) WithDefaults added in v0.1.1

func (o *GetVrlisParams) WithDefaults() *GetVrlisParams

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

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

func (*GetVrlisParams) WithHTTPClient added in v0.1.1

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

WithHTTPClient adds the HTTPClient to the get vrlis params

func (*GetVrlisParams) WithTimeout added in v0.1.1

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

WithTimeout adds the timeout to the get vrlis params

func (*GetVrlisParams) WriteToRequest added in v0.1.1

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

WriteToRequest writes these params to a swagger request

type GetVrlisReader added in v0.1.1

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

GetVrlisReader is a Reader for the GetVrlis structure.

func (*GetVrlisReader) ReadResponse added in v0.1.1

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