fleet_commander

package
v0.89.0 Latest Latest
Warning

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

Go to latest
Published: Jul 9, 2026 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BasicHealthCheckOK added in v0.52.0

type BasicHealthCheckOK struct {
}

BasicHealthCheckOK handles this case with default header values.

OK

func NewBasicHealthCheckOK added in v0.52.0

func NewBasicHealthCheckOK() *BasicHealthCheckOK

NewBasicHealthCheckOK creates a BasicHealthCheckOK with default headers values

func (*BasicHealthCheckOK) Error added in v0.52.0

func (o *BasicHealthCheckOK) Error() string

type BasicHealthCheckParams added in v0.52.0

type BasicHealthCheckParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

BasicHealthCheckParams contains all the parameters to send to the API endpoint for the basic health check operation typically these are written to a http.Request

func NewBasicHealthCheckParams added in v0.52.0

func NewBasicHealthCheckParams() *BasicHealthCheckParams

NewBasicHealthCheckParams creates a new BasicHealthCheckParams object with the default values initialized.

func NewBasicHealthCheckParamsWithContext added in v0.52.0

func NewBasicHealthCheckParamsWithContext(ctx context.Context) *BasicHealthCheckParams

NewBasicHealthCheckParamsWithContext creates a new BasicHealthCheckParams object with the default values initialized, and the ability to set a context for a request

func NewBasicHealthCheckParamsWithHTTPClient added in v0.52.0

func NewBasicHealthCheckParamsWithHTTPClient(client *http.Client) *BasicHealthCheckParams

NewBasicHealthCheckParamsWithHTTPClient creates a new BasicHealthCheckParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewBasicHealthCheckParamsWithTimeout added in v0.52.0

func NewBasicHealthCheckParamsWithTimeout(timeout time.Duration) *BasicHealthCheckParams

NewBasicHealthCheckParamsWithTimeout creates a new BasicHealthCheckParams object with the default values initialized, and the ability to set a timeout on a request

func (*BasicHealthCheckParams) SetAuthInfoWriter added in v0.52.0

func (o *BasicHealthCheckParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the basic health check params

func (*BasicHealthCheckParams) SetContext added in v0.52.0

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

SetContext adds the context to the basic health check params

func (*BasicHealthCheckParams) SetFlightId added in v0.63.0

func (o *BasicHealthCheckParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*BasicHealthCheckParams) SetHTTPClient added in v0.52.0

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

SetHTTPClient adds the HTTPClient to the basic health check params

func (*BasicHealthCheckParams) SetHTTPClientTransport added in v0.52.0

func (o *BasicHealthCheckParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the basic health check params

func (*BasicHealthCheckParams) SetTimeout added in v0.52.0

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

SetTimeout adds the timeout to the basic health check params

func (*BasicHealthCheckParams) WithContext added in v0.52.0

WithContext adds the context to the basic health check params

func (*BasicHealthCheckParams) WithHTTPClient added in v0.52.0

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

WithHTTPClient adds the HTTPClient to the basic health check params

func (*BasicHealthCheckParams) WithTimeout added in v0.52.0

WithTimeout adds the timeout to the basic health check params

func (*BasicHealthCheckParams) WriteToRequest added in v0.52.0

WriteToRequest writes these params to a swagger request

type BasicHealthCheckReader added in v0.52.0

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

BasicHealthCheckReader is a Reader for the BasicHealthCheck structure.

func (*BasicHealthCheckReader) ReadResponse added in v0.52.0

func (o *BasicHealthCheckReader) 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 fleet commander API

func (*Client) BasicHealthCheck deprecated added in v0.52.0

func (a *Client) BasicHealthCheck(params *BasicHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*BasicHealthCheckOK, error)

Deprecated: 2022-08-10 - Use BasicHealthCheckShort instead.

BasicHealthCheck health check

func (*Client) BasicHealthCheckShort added in v0.52.0

func (a *Client) BasicHealthCheckShort(params *BasicHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*BasicHealthCheckOK, error)

BasicHealthCheckShort health check

func (*Client) PortalHealthCheck deprecated added in v0.52.0

func (a *Client) PortalHealthCheck(params *PortalHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*PortalHealthCheckOK, error)

Deprecated: 2022-08-10 - Use PortalHealthCheckShort instead.

PortalHealthCheck health check

func (*Client) PortalHealthCheckShort added in v0.52.0

func (a *Client) PortalHealthCheckShort(params *PortalHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*PortalHealthCheckOK, error)

PortalHealthCheckShort health check

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) VersionInfo deprecated added in v0.89.0

func (a *Client) VersionInfo(params *VersionInfoParams, authInfo runtime.ClientAuthInfoWriter) (*VersionInfoOK, error)

Deprecated: 2022-08-10 - Use VersionInfoShort instead.

VersionInfo version info

func (*Client) VersionInfoShort added in v0.89.0

func (a *Client) VersionInfoShort(params *VersionInfoParams, authInfo runtime.ClientAuthInfoWriter) (*VersionInfoOK, error)

VersionInfoShort version info

type ClientService

type ClientService interface {
	PortalHealthCheck(params *PortalHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*PortalHealthCheckOK, error)
	PortalHealthCheckShort(params *PortalHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*PortalHealthCheckOK, error)
	VersionInfo(params *VersionInfoParams, authInfo runtime.ClientAuthInfoWriter) (*VersionInfoOK, error)
	VersionInfoShort(params *VersionInfoParams, authInfo runtime.ClientAuthInfoWriter) (*VersionInfoOK, error)
	BasicHealthCheck(params *BasicHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*BasicHealthCheckOK, error)
	BasicHealthCheckShort(params *BasicHealthCheckParams, authInfo runtime.ClientAuthInfoWriter) (*BasicHealthCheckOK, 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 fleet commander API client.

type PortalHealthCheckOK added in v0.52.0

type PortalHealthCheckOK struct {
}

PortalHealthCheckOK handles this case with default header values.

OK

func NewPortalHealthCheckOK added in v0.52.0

func NewPortalHealthCheckOK() *PortalHealthCheckOK

NewPortalHealthCheckOK creates a PortalHealthCheckOK with default headers values

func (*PortalHealthCheckOK) Error added in v0.52.0

func (o *PortalHealthCheckOK) Error() string

type PortalHealthCheckParams added in v0.52.0

type PortalHealthCheckParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

PortalHealthCheckParams contains all the parameters to send to the API endpoint for the portal health check operation typically these are written to a http.Request

func NewPortalHealthCheckParams added in v0.52.0

func NewPortalHealthCheckParams() *PortalHealthCheckParams

NewPortalHealthCheckParams creates a new PortalHealthCheckParams object with the default values initialized.

func NewPortalHealthCheckParamsWithContext added in v0.52.0

func NewPortalHealthCheckParamsWithContext(ctx context.Context) *PortalHealthCheckParams

NewPortalHealthCheckParamsWithContext creates a new PortalHealthCheckParams object with the default values initialized, and the ability to set a context for a request

func NewPortalHealthCheckParamsWithHTTPClient added in v0.52.0

func NewPortalHealthCheckParamsWithHTTPClient(client *http.Client) *PortalHealthCheckParams

NewPortalHealthCheckParamsWithHTTPClient creates a new PortalHealthCheckParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPortalHealthCheckParamsWithTimeout added in v0.52.0

func NewPortalHealthCheckParamsWithTimeout(timeout time.Duration) *PortalHealthCheckParams

NewPortalHealthCheckParamsWithTimeout creates a new PortalHealthCheckParams object with the default values initialized, and the ability to set a timeout on a request

func (*PortalHealthCheckParams) SetAuthInfoWriter added in v0.52.0

func (o *PortalHealthCheckParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the portal health check params

func (*PortalHealthCheckParams) SetContext added in v0.52.0

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

SetContext adds the context to the portal health check params

func (*PortalHealthCheckParams) SetFlightId added in v0.63.0

func (o *PortalHealthCheckParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*PortalHealthCheckParams) SetHTTPClient added in v0.52.0

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

SetHTTPClient adds the HTTPClient to the portal health check params

func (*PortalHealthCheckParams) SetHTTPClientTransport added in v0.52.0

func (o *PortalHealthCheckParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the portal health check params

func (*PortalHealthCheckParams) SetTimeout added in v0.52.0

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

SetTimeout adds the timeout to the portal health check params

func (*PortalHealthCheckParams) WithContext added in v0.52.0

WithContext adds the context to the portal health check params

func (*PortalHealthCheckParams) WithHTTPClient added in v0.52.0

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

WithHTTPClient adds the HTTPClient to the portal health check params

func (*PortalHealthCheckParams) WithTimeout added in v0.52.0

WithTimeout adds the timeout to the portal health check params

func (*PortalHealthCheckParams) WriteToRequest added in v0.52.0

WriteToRequest writes these params to a swagger request

type PortalHealthCheckReader added in v0.52.0

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

PortalHealthCheckReader is a Reader for the PortalHealthCheck structure.

func (*PortalHealthCheckReader) ReadResponse added in v0.52.0

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

ReadResponse reads a server response into the received o.

type VersionInfoOK added in v0.89.0

type VersionInfoOK struct {
}

VersionInfoOK handles this case with default header values.

OK

func NewVersionInfoOK added in v0.89.0

func NewVersionInfoOK() *VersionInfoOK

NewVersionInfoOK creates a VersionInfoOK with default headers values

func (*VersionInfoOK) Error added in v0.89.0

func (o *VersionInfoOK) Error() string

type VersionInfoParams added in v0.89.0

type VersionInfoParams struct {

	/*RetryPolicy*/
	RetryPolicy *utils.Retry

	AuthInfoWriter runtime.ClientAuthInfoWriter
	Context        context.Context
	HTTPClient     *http.Client

	// XFlightId is an optional parameter from this SDK
	XFlightId *string
	// contains filtered or unexported fields
}

VersionInfoParams contains all the parameters to send to the API endpoint for the version info operation typically these are written to a http.Request

func NewVersionInfoParams added in v0.89.0

func NewVersionInfoParams() *VersionInfoParams

NewVersionInfoParams creates a new VersionInfoParams object with the default values initialized.

func NewVersionInfoParamsWithContext added in v0.89.0

func NewVersionInfoParamsWithContext(ctx context.Context) *VersionInfoParams

NewVersionInfoParamsWithContext creates a new VersionInfoParams object with the default values initialized, and the ability to set a context for a request

func NewVersionInfoParamsWithHTTPClient added in v0.89.0

func NewVersionInfoParamsWithHTTPClient(client *http.Client) *VersionInfoParams

NewVersionInfoParamsWithHTTPClient creates a new VersionInfoParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewVersionInfoParamsWithTimeout added in v0.89.0

func NewVersionInfoParamsWithTimeout(timeout time.Duration) *VersionInfoParams

NewVersionInfoParamsWithTimeout creates a new VersionInfoParams object with the default values initialized, and the ability to set a timeout on a request

func (*VersionInfoParams) SetAuthInfoWriter added in v0.89.0

func (o *VersionInfoParams) SetAuthInfoWriter(authInfoWriter runtime.ClientAuthInfoWriter)

SetAuthInfoWriter adds the authInfoWriter to the version info params

func (*VersionInfoParams) SetContext added in v0.89.0

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

SetContext adds the context to the version info params

func (*VersionInfoParams) SetFlightId added in v0.89.0

func (o *VersionInfoParams) SetFlightId(flightId string)

SetFlightId adds the flightId as the header value for this specific endpoint

func (*VersionInfoParams) SetHTTPClient added in v0.89.0

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

SetHTTPClient adds the HTTPClient to the version info params

func (*VersionInfoParams) SetHTTPClientTransport added in v0.89.0

func (o *VersionInfoParams) SetHTTPClientTransport(roundTripper http.RoundTripper)

SetHTTPClient adds the HTTPClient Transport to the version info params

func (*VersionInfoParams) SetTimeout added in v0.89.0

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

SetTimeout adds the timeout to the version info params

func (*VersionInfoParams) WithContext added in v0.89.0

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

WithContext adds the context to the version info params

func (*VersionInfoParams) WithHTTPClient added in v0.89.0

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

WithHTTPClient adds the HTTPClient to the version info params

func (*VersionInfoParams) WithTimeout added in v0.89.0

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

WithTimeout adds the timeout to the version info params

func (*VersionInfoParams) WriteToRequest added in v0.89.0

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

WriteToRequest writes these params to a swagger request

type VersionInfoReader added in v0.89.0

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

VersionInfoReader is a Reader for the VersionInfo structure.

func (*VersionInfoReader) ReadResponse added in v0.89.0

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