sddc_managers

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 sddc managers API

func (*Client) GetSDDCManager added in v0.1.1

func (a *Client) GetSDDCManager(params *GetSDDCManagerParams, opts ...ClientOption) (*GetSDDCManagerOK, error)

GetSDDCManager gets a SDDC manager

func (*Client) GetSDDCManagers added in v0.1.1

func (a *Client) GetSDDCManagers(params *GetSDDCManagersParams, opts ...ClientOption) (*GetSDDCManagersOK, error)

GetSDDCManagers gets the SDDC managers

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 {
	GetSDDCManager(params *GetSDDCManagerParams, opts ...ClientOption) (*GetSDDCManagerOK, error)

	GetSDDCManagers(params *GetSDDCManagersParams, opts ...ClientOption) (*GetSDDCManagersOK, 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 sddc managers API client.

type GetSDDCManagerInternalServerError added in v0.1.1

type GetSDDCManagerInternalServerError struct {
	Payload *models.Error
}

GetSDDCManagerInternalServerError describes a response with status code 500, with default header values.

InternalServerError

func NewGetSDDCManagerInternalServerError added in v0.1.1

func NewGetSDDCManagerInternalServerError() *GetSDDCManagerInternalServerError

NewGetSDDCManagerInternalServerError creates a GetSDDCManagerInternalServerError with default headers values

func (*GetSDDCManagerInternalServerError) Error added in v0.1.1

func (*GetSDDCManagerInternalServerError) GetPayload added in v0.1.1

func (*GetSDDCManagerInternalServerError) IsClientError added in v0.1.1

func (o *GetSDDCManagerInternalServerError) IsClientError() bool

IsClientError returns true when this get Sddc manager internal server error response has a 4xx status code

func (*GetSDDCManagerInternalServerError) IsCode added in v0.1.1

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

IsCode returns true when this get Sddc manager internal server error response a status code equal to that given

func (*GetSDDCManagerInternalServerError) IsRedirect added in v0.1.1

func (o *GetSDDCManagerInternalServerError) IsRedirect() bool

IsRedirect returns true when this get Sddc manager internal server error response has a 3xx status code

func (*GetSDDCManagerInternalServerError) IsServerError added in v0.1.1

func (o *GetSDDCManagerInternalServerError) IsServerError() bool

IsServerError returns true when this get Sddc manager internal server error response has a 5xx status code

func (*GetSDDCManagerInternalServerError) IsSuccess added in v0.1.1

func (o *GetSDDCManagerInternalServerError) IsSuccess() bool

IsSuccess returns true when this get Sddc manager internal server error response has a 2xx status code

func (*GetSDDCManagerInternalServerError) String added in v0.1.1

type GetSDDCManagerNotFound added in v0.1.1

type GetSDDCManagerNotFound struct {
	Payload *models.Error
}

GetSDDCManagerNotFound describes a response with status code 404, with default header values.

Sddc Manager not found

func NewGetSDDCManagerNotFound added in v0.1.1

func NewGetSDDCManagerNotFound() *GetSDDCManagerNotFound

NewGetSDDCManagerNotFound creates a GetSDDCManagerNotFound with default headers values

func (*GetSDDCManagerNotFound) Error added in v0.1.1

func (o *GetSDDCManagerNotFound) Error() string

func (*GetSDDCManagerNotFound) GetPayload added in v0.1.1

func (o *GetSDDCManagerNotFound) GetPayload() *models.Error

func (*GetSDDCManagerNotFound) IsClientError added in v0.1.1

func (o *GetSDDCManagerNotFound) IsClientError() bool

IsClientError returns true when this get Sddc manager not found response has a 4xx status code

func (*GetSDDCManagerNotFound) IsCode added in v0.1.1

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

IsCode returns true when this get Sddc manager not found response a status code equal to that given

func (*GetSDDCManagerNotFound) IsRedirect added in v0.1.1

func (o *GetSDDCManagerNotFound) IsRedirect() bool

IsRedirect returns true when this get Sddc manager not found response has a 3xx status code

func (*GetSDDCManagerNotFound) IsServerError added in v0.1.1

func (o *GetSDDCManagerNotFound) IsServerError() bool

IsServerError returns true when this get Sddc manager not found response has a 5xx status code

func (*GetSDDCManagerNotFound) IsSuccess added in v0.1.1

func (o *GetSDDCManagerNotFound) IsSuccess() bool

IsSuccess returns true when this get Sddc manager not found response has a 2xx status code

func (*GetSDDCManagerNotFound) String added in v0.1.1

func (o *GetSDDCManagerNotFound) String() string

type GetSDDCManagerOK added in v0.1.1

type GetSDDCManagerOK struct {
	Payload *models.SDDCManager
}

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

Ok

func NewGetSDDCManagerOK added in v0.1.1

func NewGetSDDCManagerOK() *GetSDDCManagerOK

NewGetSDDCManagerOK creates a GetSDDCManagerOK with default headers values

func (*GetSDDCManagerOK) Error added in v0.1.1

func (o *GetSDDCManagerOK) Error() string

func (*GetSDDCManagerOK) GetPayload added in v0.1.1

func (o *GetSDDCManagerOK) GetPayload() *models.SDDCManager

func (*GetSDDCManagerOK) IsClientError added in v0.1.1

func (o *GetSDDCManagerOK) IsClientError() bool

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

func (*GetSDDCManagerOK) IsCode added in v0.1.1

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

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

func (*GetSDDCManagerOK) IsRedirect added in v0.1.1

func (o *GetSDDCManagerOK) IsRedirect() bool

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

func (*GetSDDCManagerOK) IsServerError added in v0.1.1

func (o *GetSDDCManagerOK) IsServerError() bool

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

func (*GetSDDCManagerOK) IsSuccess added in v0.1.1

func (o *GetSDDCManagerOK) IsSuccess() bool

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

func (*GetSDDCManagerOK) String added in v0.1.1

func (o *GetSDDCManagerOK) String() string

type GetSDDCManagerParams added in v0.1.1

type GetSDDCManagerParams struct {

	/* ID.

	   Sddc Manager ID
	*/
	ID string

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

GetSDDCManagerParams contains all the parameters to send to the API endpoint

for the get Sddc manager operation.

Typically these are written to a http.Request.

func NewGetSDDCManagerParams added in v0.1.1

func NewGetSDDCManagerParams() *GetSDDCManagerParams

NewGetSDDCManagerParams creates a new GetSDDCManagerParams 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 NewGetSDDCManagerParamsWithContext added in v0.1.1

func NewGetSDDCManagerParamsWithContext(ctx context.Context) *GetSDDCManagerParams

NewGetSDDCManagerParamsWithContext creates a new GetSDDCManagerParams object with the ability to set a context for a request.

func NewGetSDDCManagerParamsWithHTTPClient added in v0.1.1

func NewGetSDDCManagerParamsWithHTTPClient(client *http.Client) *GetSDDCManagerParams

NewGetSDDCManagerParamsWithHTTPClient creates a new GetSDDCManagerParams object with the ability to set a custom HTTPClient for a request.

func NewGetSDDCManagerParamsWithTimeout added in v0.1.1

func NewGetSDDCManagerParamsWithTimeout(timeout time.Duration) *GetSDDCManagerParams

NewGetSDDCManagerParamsWithTimeout creates a new GetSDDCManagerParams object with the ability to set a timeout on a request.

func (*GetSDDCManagerParams) SetContext added in v0.1.1

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

SetContext adds the context to the get Sddc manager params

func (*GetSDDCManagerParams) SetDefaults added in v0.1.1

func (o *GetSDDCManagerParams) SetDefaults()

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

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

func (*GetSDDCManagerParams) SetHTTPClient added in v0.1.1

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

SetHTTPClient adds the HTTPClient to the get Sddc manager params

func (*GetSDDCManagerParams) SetID added in v0.1.1

func (o *GetSDDCManagerParams) SetID(id string)

SetID adds the id to the get Sddc manager params

func (*GetSDDCManagerParams) SetTimeout added in v0.1.1

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

SetTimeout adds the timeout to the get Sddc manager params

func (*GetSDDCManagerParams) WithContext added in v0.1.1

WithContext adds the context to the get Sddc manager params

func (*GetSDDCManagerParams) WithDefaults added in v0.1.1

func (o *GetSDDCManagerParams) WithDefaults() *GetSDDCManagerParams

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

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

func (*GetSDDCManagerParams) WithHTTPClient added in v0.1.1

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

WithHTTPClient adds the HTTPClient to the get Sddc manager params

func (*GetSDDCManagerParams) WithID added in v0.1.1

WithID adds the id to the get Sddc manager params

func (*GetSDDCManagerParams) WithTimeout added in v0.1.1

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

WithTimeout adds the timeout to the get Sddc manager params

func (*GetSDDCManagerParams) WriteToRequest added in v0.1.1

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

WriteToRequest writes these params to a swagger request

type GetSDDCManagerReader added in v0.1.1

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

GetSDDCManagerReader is a Reader for the GetSDDCManager structure.

func (*GetSDDCManagerReader) ReadResponse added in v0.1.1

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

ReadResponse reads a server response into the received o.

type GetSDDCManagersBadRequest added in v0.1.1

type GetSDDCManagersBadRequest struct {
	Payload *models.Error
}

GetSDDCManagersBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewGetSDDCManagersBadRequest added in v0.1.1

func NewGetSDDCManagersBadRequest() *GetSDDCManagersBadRequest

NewGetSDDCManagersBadRequest creates a GetSDDCManagersBadRequest with default headers values

func (*GetSDDCManagersBadRequest) Error added in v0.1.1

func (o *GetSDDCManagersBadRequest) Error() string

func (*GetSDDCManagersBadRequest) GetPayload added in v0.1.1

func (o *GetSDDCManagersBadRequest) GetPayload() *models.Error

func (*GetSDDCManagersBadRequest) IsClientError added in v0.1.1

func (o *GetSDDCManagersBadRequest) IsClientError() bool

IsClientError returns true when this get Sddc managers bad request response has a 4xx status code

func (*GetSDDCManagersBadRequest) IsCode added in v0.1.1

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

IsCode returns true when this get Sddc managers bad request response a status code equal to that given

func (*GetSDDCManagersBadRequest) IsRedirect added in v0.1.1

func (o *GetSDDCManagersBadRequest) IsRedirect() bool

IsRedirect returns true when this get Sddc managers bad request response has a 3xx status code

func (*GetSDDCManagersBadRequest) IsServerError added in v0.1.1

func (o *GetSDDCManagersBadRequest) IsServerError() bool

IsServerError returns true when this get Sddc managers bad request response has a 5xx status code

func (*GetSDDCManagersBadRequest) IsSuccess added in v0.1.1

func (o *GetSDDCManagersBadRequest) IsSuccess() bool

IsSuccess returns true when this get Sddc managers bad request response has a 2xx status code

func (*GetSDDCManagersBadRequest) String added in v0.1.1

func (o *GetSDDCManagersBadRequest) String() string

type GetSDDCManagersInternalServerError added in v0.1.1

type GetSDDCManagersInternalServerError struct {
	Payload *models.Error
}

GetSDDCManagersInternalServerError describes a response with status code 500, with default header values.

InternalServerError

func NewGetSDDCManagersInternalServerError added in v0.1.1

func NewGetSDDCManagersInternalServerError() *GetSDDCManagersInternalServerError

NewGetSDDCManagersInternalServerError creates a GetSDDCManagersInternalServerError with default headers values

func (*GetSDDCManagersInternalServerError) Error added in v0.1.1

func (*GetSDDCManagersInternalServerError) GetPayload added in v0.1.1

func (*GetSDDCManagersInternalServerError) IsClientError added in v0.1.1

func (o *GetSDDCManagersInternalServerError) IsClientError() bool

IsClientError returns true when this get Sddc managers internal server error response has a 4xx status code

func (*GetSDDCManagersInternalServerError) IsCode added in v0.1.1

IsCode returns true when this get Sddc managers internal server error response a status code equal to that given

func (*GetSDDCManagersInternalServerError) IsRedirect added in v0.1.1

func (o *GetSDDCManagersInternalServerError) IsRedirect() bool

IsRedirect returns true when this get Sddc managers internal server error response has a 3xx status code

func (*GetSDDCManagersInternalServerError) IsServerError added in v0.1.1

func (o *GetSDDCManagersInternalServerError) IsServerError() bool

IsServerError returns true when this get Sddc managers internal server error response has a 5xx status code

func (*GetSDDCManagersInternalServerError) IsSuccess added in v0.1.1

IsSuccess returns true when this get Sddc managers internal server error response has a 2xx status code

func (*GetSDDCManagersInternalServerError) String added in v0.1.1

type GetSDDCManagersOK added in v0.1.1

type GetSDDCManagersOK struct {
	Payload *models.PageOfSDDCManager
}

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

Ok

func NewGetSDDCManagersOK added in v0.1.1

func NewGetSDDCManagersOK() *GetSDDCManagersOK

NewGetSDDCManagersOK creates a GetSDDCManagersOK with default headers values

func (*GetSDDCManagersOK) Error added in v0.1.1

func (o *GetSDDCManagersOK) Error() string

func (*GetSDDCManagersOK) GetPayload added in v0.1.1

func (o *GetSDDCManagersOK) GetPayload() *models.PageOfSDDCManager

func (*GetSDDCManagersOK) IsClientError added in v0.1.1

func (o *GetSDDCManagersOK) IsClientError() bool

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

func (*GetSDDCManagersOK) IsCode added in v0.1.1

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

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

func (*GetSDDCManagersOK) IsRedirect added in v0.1.1

func (o *GetSDDCManagersOK) IsRedirect() bool

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

func (*GetSDDCManagersOK) IsServerError added in v0.1.1

func (o *GetSDDCManagersOK) IsServerError() bool

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

func (*GetSDDCManagersOK) IsSuccess added in v0.1.1

func (o *GetSDDCManagersOK) IsSuccess() bool

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

func (*GetSDDCManagersOK) String added in v0.1.1

func (o *GetSDDCManagersOK) String() string

type GetSDDCManagersParams added in v0.1.1

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

GetSDDCManagersParams contains all the parameters to send to the API endpoint

for the get Sddc managers operation.

Typically these are written to a http.Request.

func NewGetSDDCManagersParams added in v0.1.1

func NewGetSDDCManagersParams() *GetSDDCManagersParams

NewGetSDDCManagersParams creates a new GetSDDCManagersParams 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 NewGetSDDCManagersParamsWithContext added in v0.1.1

func NewGetSDDCManagersParamsWithContext(ctx context.Context) *GetSDDCManagersParams

NewGetSDDCManagersParamsWithContext creates a new GetSDDCManagersParams object with the ability to set a context for a request.

func NewGetSDDCManagersParamsWithHTTPClient added in v0.1.1

func NewGetSDDCManagersParamsWithHTTPClient(client *http.Client) *GetSDDCManagersParams

NewGetSDDCManagersParamsWithHTTPClient creates a new GetSDDCManagersParams object with the ability to set a custom HTTPClient for a request.

func NewGetSDDCManagersParamsWithTimeout added in v0.1.1

func NewGetSDDCManagersParamsWithTimeout(timeout time.Duration) *GetSDDCManagersParams

NewGetSDDCManagersParamsWithTimeout creates a new GetSDDCManagersParams object with the ability to set a timeout on a request.

func (*GetSDDCManagersParams) SetContext added in v0.1.1

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

SetContext adds the context to the get Sddc managers params

func (*GetSDDCManagersParams) SetDefaults added in v0.1.1

func (o *GetSDDCManagersParams) SetDefaults()

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

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

func (*GetSDDCManagersParams) SetHTTPClient added in v0.1.1

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

SetHTTPClient adds the HTTPClient to the get Sddc managers params

func (*GetSDDCManagersParams) SetTimeout added in v0.1.1

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

SetTimeout adds the timeout to the get Sddc managers params

func (*GetSDDCManagersParams) WithContext added in v0.1.1

WithContext adds the context to the get Sddc managers params

func (*GetSDDCManagersParams) WithDefaults added in v0.1.1

func (o *GetSDDCManagersParams) WithDefaults() *GetSDDCManagersParams

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

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

func (*GetSDDCManagersParams) WithHTTPClient added in v0.1.1

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

WithHTTPClient adds the HTTPClient to the get Sddc managers params

func (*GetSDDCManagersParams) WithTimeout added in v0.1.1

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

WithTimeout adds the timeout to the get Sddc managers params

func (*GetSDDCManagersParams) WriteToRequest added in v0.1.1

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

WriteToRequest writes these params to a swagger request

type GetSDDCManagersReader added in v0.1.1

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

GetSDDCManagersReader is a Reader for the GetSDDCManagers structure.

func (*GetSDDCManagersReader) ReadResponse added in v0.1.1

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