eks

package
v2.21.0 Latest Latest
Warning

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

Go to latest
Published: Aug 29, 2022 License: Apache-2.0 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 eks API

func (*Client) ListEKSAMITypes added in v2.21.0

func (a *Client) ListEKSAMITypes(params *ListEKSAMITypesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSAMITypesOK, error)

ListEKSAMITypes gets the e k s a m i types for node group

func (*Client) ListEKSCapacityTypes added in v2.21.0

func (a *Client) ListEKSCapacityTypes(params *ListEKSCapacityTypesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSCapacityTypesOK, error)

ListEKSCapacityTypes gets the e k s capacity types for node group

func (*Client) ListEKSInstanceTypesNoCredentials added in v2.21.0

func (a *Client) ListEKSInstanceTypesNoCredentials(params *ListEKSInstanceTypesNoCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSInstanceTypesNoCredentialsOK, error)

ListEKSInstanceTypesNoCredentials gets the e k s instance types for node group

func (*Client) ListEKSRegions added in v2.21.0

func (a *Client) ListEKSRegions(params *ListEKSRegionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSRegionsOK, error)

ListEKSRegions lists e k s regions

func (*Client) ListEKSSecurityGroups added in v2.21.0

func (a *Client) ListEKSSecurityGroups(params *ListEKSSecurityGroupsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSSecurityGroupsOK, error)

ListEKSSecurityGroups lists e k s securitygroup list

func (*Client) ListEKSSubnets added in v2.21.0

func (a *Client) ListEKSSubnets(params *ListEKSSubnetsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSSubnetsOK, error)

ListEKSSubnets lists e k s subnet list

func (*Client) ListEKSSubnetsNoCredentials added in v2.21.0

func (a *Client) ListEKSSubnetsNoCredentials(params *ListEKSSubnetsNoCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSSubnetsNoCredentialsOK, error)

ListEKSSubnetsNoCredentials gets the e k s subnets for node group

func (*Client) ListEKSVPCS added in v2.21.0

func (a *Client) ListEKSVPCS(params *ListEKSVPCSParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSVPCSOK, error)

ListEKSVPCS Lists EKS vpc's

func (*Client) ListEKSVPCsNoCredentials added in v2.21.0

func (a *Client) ListEKSVPCsNoCredentials(params *ListEKSVPCsNoCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSVPCsNoCredentialsOK, error)

ListEKSVPCsNoCredentials gets the e k s vpc s for node group

func (*Client) ListEKSVersions added in v2.21.0

func (a *Client) ListEKSVersions(params *ListEKSVersionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSVersionsOK, error)

ListEKSVersions Lists EKS versions

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) ValidateEKSCredentials

func (a *Client) ValidateEKSCredentials(params *ValidateEKSCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ValidateEKSCredentialsOK, error)

ValidateEKSCredentials Validates EKS credentials

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	ListEKSAMITypes(params *ListEKSAMITypesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSAMITypesOK, error)

	ListEKSCapacityTypes(params *ListEKSCapacityTypesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSCapacityTypesOK, error)

	ListEKSInstanceTypesNoCredentials(params *ListEKSInstanceTypesNoCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSInstanceTypesNoCredentialsOK, error)

	ListEKSRegions(params *ListEKSRegionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSRegionsOK, error)

	ListEKSSecurityGroups(params *ListEKSSecurityGroupsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSSecurityGroupsOK, error)

	ListEKSSubnets(params *ListEKSSubnetsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSSubnetsOK, error)

	ListEKSSubnetsNoCredentials(params *ListEKSSubnetsNoCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSSubnetsNoCredentialsOK, error)

	ListEKSVPCS(params *ListEKSVPCSParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSVPCSOK, error)

	ListEKSVPCsNoCredentials(params *ListEKSVPCsNoCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSVPCsNoCredentialsOK, error)

	ListEKSVersions(params *ListEKSVersionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListEKSVersionsOK, error)

	ValidateEKSCredentials(params *ValidateEKSCredentialsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ValidateEKSCredentialsOK, 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 eks API client.

type ListEKSAMITypesDefault added in v2.21.0

type ListEKSAMITypesDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSAMITypesDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSAMITypesDefault added in v2.21.0

func NewListEKSAMITypesDefault(code int) *ListEKSAMITypesDefault

NewListEKSAMITypesDefault creates a ListEKSAMITypesDefault with default headers values

func (*ListEKSAMITypesDefault) Code added in v2.21.0

func (o *ListEKSAMITypesDefault) Code() int

Code gets the status code for the list e k s a m i types default response

func (*ListEKSAMITypesDefault) Error added in v2.21.0

func (o *ListEKSAMITypesDefault) Error() string

func (*ListEKSAMITypesDefault) GetPayload added in v2.21.0

func (o *ListEKSAMITypesDefault) GetPayload() *models.ErrorResponse

type ListEKSAMITypesForbidden added in v2.21.0

type ListEKSAMITypesForbidden struct {
}
ListEKSAMITypesForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListEKSAMITypesForbidden added in v2.21.0

func NewListEKSAMITypesForbidden() *ListEKSAMITypesForbidden

NewListEKSAMITypesForbidden creates a ListEKSAMITypesForbidden with default headers values

func (*ListEKSAMITypesForbidden) Error added in v2.21.0

func (o *ListEKSAMITypesForbidden) Error() string

type ListEKSAMITypesOK added in v2.21.0

type ListEKSAMITypesOK struct {
	Payload models.EKSAMITypeList
}
ListEKSAMITypesOK describes a response with status code 200, with default header values.

EKSAMITypeList

func NewListEKSAMITypesOK added in v2.21.0

func NewListEKSAMITypesOK() *ListEKSAMITypesOK

NewListEKSAMITypesOK creates a ListEKSAMITypesOK with default headers values

func (*ListEKSAMITypesOK) Error added in v2.21.0

func (o *ListEKSAMITypesOK) Error() string

func (*ListEKSAMITypesOK) GetPayload added in v2.21.0

func (o *ListEKSAMITypesOK) GetPayload() models.EKSAMITypeList

type ListEKSAMITypesParams added in v2.21.0

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

ListEKSAMITypesParams contains all the parameters to send to the API endpoint

for the list e k s a m i types operation.

Typically these are written to a http.Request.

func NewListEKSAMITypesParams added in v2.21.0

func NewListEKSAMITypesParams() *ListEKSAMITypesParams

NewListEKSAMITypesParams creates a new ListEKSAMITypesParams 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 NewListEKSAMITypesParamsWithContext added in v2.21.0

func NewListEKSAMITypesParamsWithContext(ctx context.Context) *ListEKSAMITypesParams

NewListEKSAMITypesParamsWithContext creates a new ListEKSAMITypesParams object with the ability to set a context for a request.

func NewListEKSAMITypesParamsWithHTTPClient added in v2.21.0

func NewListEKSAMITypesParamsWithHTTPClient(client *http.Client) *ListEKSAMITypesParams

NewListEKSAMITypesParamsWithHTTPClient creates a new ListEKSAMITypesParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSAMITypesParamsWithTimeout added in v2.21.0

func NewListEKSAMITypesParamsWithTimeout(timeout time.Duration) *ListEKSAMITypesParams

NewListEKSAMITypesParamsWithTimeout creates a new ListEKSAMITypesParams object with the ability to set a timeout on a request.

func (*ListEKSAMITypesParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s a m i types params

func (*ListEKSAMITypesParams) SetDefaults added in v2.21.0

func (o *ListEKSAMITypesParams) SetDefaults()

SetDefaults hydrates default values in the list e k s a m i types params (not the query body).

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

func (*ListEKSAMITypesParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s a m i types params

func (*ListEKSAMITypesParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s a m i types params

func (*ListEKSAMITypesParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s a m i types params

func (*ListEKSAMITypesParams) WithDefaults added in v2.21.0

func (o *ListEKSAMITypesParams) WithDefaults() *ListEKSAMITypesParams

WithDefaults hydrates default values in the list e k s a m i types params (not the query body).

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

func (*ListEKSAMITypesParams) WithHTTPClient added in v2.21.0

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

WithHTTPClient adds the HTTPClient to the list e k s a m i types params

func (*ListEKSAMITypesParams) WithTimeout added in v2.21.0

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

WithTimeout adds the timeout to the list e k s a m i types params

func (*ListEKSAMITypesParams) WriteToRequest added in v2.21.0

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

WriteToRequest writes these params to a swagger request

type ListEKSAMITypesReader added in v2.21.0

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

ListEKSAMITypesReader is a Reader for the ListEKSAMITypes structure.

func (*ListEKSAMITypesReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSAMITypesUnauthorized added in v2.21.0

type ListEKSAMITypesUnauthorized struct {
}
ListEKSAMITypesUnauthorized describes a response with status code 401, with default header values.

EmptyResponse is a empty response

func NewListEKSAMITypesUnauthorized added in v2.21.0

func NewListEKSAMITypesUnauthorized() *ListEKSAMITypesUnauthorized

NewListEKSAMITypesUnauthorized creates a ListEKSAMITypesUnauthorized with default headers values

func (*ListEKSAMITypesUnauthorized) Error added in v2.21.0

type ListEKSCapacityTypesDefault added in v2.21.0

type ListEKSCapacityTypesDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSCapacityTypesDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSCapacityTypesDefault added in v2.21.0

func NewListEKSCapacityTypesDefault(code int) *ListEKSCapacityTypesDefault

NewListEKSCapacityTypesDefault creates a ListEKSCapacityTypesDefault with default headers values

func (*ListEKSCapacityTypesDefault) Code added in v2.21.0

func (o *ListEKSCapacityTypesDefault) Code() int

Code gets the status code for the list e k s capacity types default response

func (*ListEKSCapacityTypesDefault) Error added in v2.21.0

func (*ListEKSCapacityTypesDefault) GetPayload added in v2.21.0

type ListEKSCapacityTypesForbidden added in v2.21.0

type ListEKSCapacityTypesForbidden struct {
}
ListEKSCapacityTypesForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListEKSCapacityTypesForbidden added in v2.21.0

func NewListEKSCapacityTypesForbidden() *ListEKSCapacityTypesForbidden

NewListEKSCapacityTypesForbidden creates a ListEKSCapacityTypesForbidden with default headers values

func (*ListEKSCapacityTypesForbidden) Error added in v2.21.0

type ListEKSCapacityTypesOK added in v2.21.0

type ListEKSCapacityTypesOK struct {
	Payload models.EKSCapacityTypeList
}
ListEKSCapacityTypesOK describes a response with status code 200, with default header values.

EKSCapacityTypeList

func NewListEKSCapacityTypesOK added in v2.21.0

func NewListEKSCapacityTypesOK() *ListEKSCapacityTypesOK

NewListEKSCapacityTypesOK creates a ListEKSCapacityTypesOK with default headers values

func (*ListEKSCapacityTypesOK) Error added in v2.21.0

func (o *ListEKSCapacityTypesOK) Error() string

func (*ListEKSCapacityTypesOK) GetPayload added in v2.21.0

type ListEKSCapacityTypesParams added in v2.21.0

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

ListEKSCapacityTypesParams contains all the parameters to send to the API endpoint

for the list e k s capacity types operation.

Typically these are written to a http.Request.

func NewListEKSCapacityTypesParams added in v2.21.0

func NewListEKSCapacityTypesParams() *ListEKSCapacityTypesParams

NewListEKSCapacityTypesParams creates a new ListEKSCapacityTypesParams 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 NewListEKSCapacityTypesParamsWithContext added in v2.21.0

func NewListEKSCapacityTypesParamsWithContext(ctx context.Context) *ListEKSCapacityTypesParams

NewListEKSCapacityTypesParamsWithContext creates a new ListEKSCapacityTypesParams object with the ability to set a context for a request.

func NewListEKSCapacityTypesParamsWithHTTPClient added in v2.21.0

func NewListEKSCapacityTypesParamsWithHTTPClient(client *http.Client) *ListEKSCapacityTypesParams

NewListEKSCapacityTypesParamsWithHTTPClient creates a new ListEKSCapacityTypesParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSCapacityTypesParamsWithTimeout added in v2.21.0

func NewListEKSCapacityTypesParamsWithTimeout(timeout time.Duration) *ListEKSCapacityTypesParams

NewListEKSCapacityTypesParamsWithTimeout creates a new ListEKSCapacityTypesParams object with the ability to set a timeout on a request.

func (*ListEKSCapacityTypesParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s capacity types params

func (*ListEKSCapacityTypesParams) SetDefaults added in v2.21.0

func (o *ListEKSCapacityTypesParams) SetDefaults()

SetDefaults hydrates default values in the list e k s capacity types params (not the query body).

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

func (*ListEKSCapacityTypesParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s capacity types params

func (*ListEKSCapacityTypesParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s capacity types params

func (*ListEKSCapacityTypesParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s capacity types params

func (*ListEKSCapacityTypesParams) WithDefaults added in v2.21.0

WithDefaults hydrates default values in the list e k s capacity types params (not the query body).

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

func (*ListEKSCapacityTypesParams) WithHTTPClient added in v2.21.0

WithHTTPClient adds the HTTPClient to the list e k s capacity types params

func (*ListEKSCapacityTypesParams) WithTimeout added in v2.21.0

WithTimeout adds the timeout to the list e k s capacity types params

func (*ListEKSCapacityTypesParams) WriteToRequest added in v2.21.0

WriteToRequest writes these params to a swagger request

type ListEKSCapacityTypesReader added in v2.21.0

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

ListEKSCapacityTypesReader is a Reader for the ListEKSCapacityTypes structure.

func (*ListEKSCapacityTypesReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSCapacityTypesUnauthorized added in v2.21.0

type ListEKSCapacityTypesUnauthorized struct {
}
ListEKSCapacityTypesUnauthorized describes a response with status code 401, with default header values.

EmptyResponse is a empty response

func NewListEKSCapacityTypesUnauthorized added in v2.21.0

func NewListEKSCapacityTypesUnauthorized() *ListEKSCapacityTypesUnauthorized

NewListEKSCapacityTypesUnauthorized creates a ListEKSCapacityTypesUnauthorized with default headers values

func (*ListEKSCapacityTypesUnauthorized) Error added in v2.21.0

type ListEKSInstanceTypesNoCredentialsDefault added in v2.21.0

type ListEKSInstanceTypesNoCredentialsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSInstanceTypesNoCredentialsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSInstanceTypesNoCredentialsDefault added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsDefault(code int) *ListEKSInstanceTypesNoCredentialsDefault

NewListEKSInstanceTypesNoCredentialsDefault creates a ListEKSInstanceTypesNoCredentialsDefault with default headers values

func (*ListEKSInstanceTypesNoCredentialsDefault) Code added in v2.21.0

Code gets the status code for the list e k s instance types no credentials default response

func (*ListEKSInstanceTypesNoCredentialsDefault) Error added in v2.21.0

func (*ListEKSInstanceTypesNoCredentialsDefault) GetPayload added in v2.21.0

type ListEKSInstanceTypesNoCredentialsForbidden added in v2.21.0

type ListEKSInstanceTypesNoCredentialsForbidden struct {
}
ListEKSInstanceTypesNoCredentialsForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListEKSInstanceTypesNoCredentialsForbidden added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsForbidden() *ListEKSInstanceTypesNoCredentialsForbidden

NewListEKSInstanceTypesNoCredentialsForbidden creates a ListEKSInstanceTypesNoCredentialsForbidden with default headers values

func (*ListEKSInstanceTypesNoCredentialsForbidden) Error added in v2.21.0

type ListEKSInstanceTypesNoCredentialsOK added in v2.21.0

type ListEKSInstanceTypesNoCredentialsOK struct {
	Payload models.EKSInstanceTypeList
}
ListEKSInstanceTypesNoCredentialsOK describes a response with status code 200, with default header values.

EKSInstanceTypeList

func NewListEKSInstanceTypesNoCredentialsOK added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsOK() *ListEKSInstanceTypesNoCredentialsOK

NewListEKSInstanceTypesNoCredentialsOK creates a ListEKSInstanceTypesNoCredentialsOK with default headers values

func (*ListEKSInstanceTypesNoCredentialsOK) Error added in v2.21.0

func (*ListEKSInstanceTypesNoCredentialsOK) GetPayload added in v2.21.0

type ListEKSInstanceTypesNoCredentialsParams added in v2.21.0

type ListEKSInstanceTypesNoCredentialsParams struct {

	// ClusterID.
	ClusterID string

	// ProjectID.
	ProjectID string

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

ListEKSInstanceTypesNoCredentialsParams contains all the parameters to send to the API endpoint

for the list e k s instance types no credentials operation.

Typically these are written to a http.Request.

func NewListEKSInstanceTypesNoCredentialsParams added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsParams() *ListEKSInstanceTypesNoCredentialsParams

NewListEKSInstanceTypesNoCredentialsParams creates a new ListEKSInstanceTypesNoCredentialsParams 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 NewListEKSInstanceTypesNoCredentialsParamsWithContext added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsParamsWithContext(ctx context.Context) *ListEKSInstanceTypesNoCredentialsParams

NewListEKSInstanceTypesNoCredentialsParamsWithContext creates a new ListEKSInstanceTypesNoCredentialsParams object with the ability to set a context for a request.

func NewListEKSInstanceTypesNoCredentialsParamsWithHTTPClient added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsParamsWithHTTPClient(client *http.Client) *ListEKSInstanceTypesNoCredentialsParams

NewListEKSInstanceTypesNoCredentialsParamsWithHTTPClient creates a new ListEKSInstanceTypesNoCredentialsParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSInstanceTypesNoCredentialsParamsWithTimeout added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsParamsWithTimeout(timeout time.Duration) *ListEKSInstanceTypesNoCredentialsParams

NewListEKSInstanceTypesNoCredentialsParamsWithTimeout creates a new ListEKSInstanceTypesNoCredentialsParams object with the ability to set a timeout on a request.

func (*ListEKSInstanceTypesNoCredentialsParams) SetClusterID added in v2.21.0

func (o *ListEKSInstanceTypesNoCredentialsParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) SetContext added in v2.21.0

SetContext adds the context to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) SetDefaults added in v2.21.0

func (o *ListEKSInstanceTypesNoCredentialsParams) SetDefaults()

SetDefaults hydrates default values in the list e k s instance types no credentials params (not the query body).

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

func (*ListEKSInstanceTypesNoCredentialsParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) SetProjectID added in v2.21.0

func (o *ListEKSInstanceTypesNoCredentialsParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) WithClusterID added in v2.21.0

WithClusterID adds the clusterID to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) WithDefaults added in v2.21.0

WithDefaults hydrates default values in the list e k s instance types no credentials params (not the query body).

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

func (*ListEKSInstanceTypesNoCredentialsParams) WithHTTPClient added in v2.21.0

WithHTTPClient adds the HTTPClient to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) WithProjectID added in v2.21.0

WithProjectID adds the projectID to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) WithTimeout added in v2.21.0

WithTimeout adds the timeout to the list e k s instance types no credentials params

func (*ListEKSInstanceTypesNoCredentialsParams) WriteToRequest added in v2.21.0

WriteToRequest writes these params to a swagger request

type ListEKSInstanceTypesNoCredentialsReader added in v2.21.0

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

ListEKSInstanceTypesNoCredentialsReader is a Reader for the ListEKSInstanceTypesNoCredentials structure.

func (*ListEKSInstanceTypesNoCredentialsReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSInstanceTypesNoCredentialsUnauthorized added in v2.21.0

type ListEKSInstanceTypesNoCredentialsUnauthorized struct {
}
ListEKSInstanceTypesNoCredentialsUnauthorized describes a response with status code 401, with default header values.

EmptyResponse is a empty response

func NewListEKSInstanceTypesNoCredentialsUnauthorized added in v2.21.0

func NewListEKSInstanceTypesNoCredentialsUnauthorized() *ListEKSInstanceTypesNoCredentialsUnauthorized

NewListEKSInstanceTypesNoCredentialsUnauthorized creates a ListEKSInstanceTypesNoCredentialsUnauthorized with default headers values

func (*ListEKSInstanceTypesNoCredentialsUnauthorized) Error added in v2.21.0

type ListEKSRegionsDefault added in v2.21.0

type ListEKSRegionsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSRegionsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSRegionsDefault added in v2.21.0

func NewListEKSRegionsDefault(code int) *ListEKSRegionsDefault

NewListEKSRegionsDefault creates a ListEKSRegionsDefault with default headers values

func (*ListEKSRegionsDefault) Code added in v2.21.0

func (o *ListEKSRegionsDefault) Code() int

Code gets the status code for the list e k s regions default response

func (*ListEKSRegionsDefault) Error added in v2.21.0

func (o *ListEKSRegionsDefault) Error() string

func (*ListEKSRegionsDefault) GetPayload added in v2.21.0

func (o *ListEKSRegionsDefault) GetPayload() *models.ErrorResponse

type ListEKSRegionsForbidden added in v2.21.0

type ListEKSRegionsForbidden struct {
}
ListEKSRegionsForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListEKSRegionsForbidden added in v2.21.0

func NewListEKSRegionsForbidden() *ListEKSRegionsForbidden

NewListEKSRegionsForbidden creates a ListEKSRegionsForbidden with default headers values

func (*ListEKSRegionsForbidden) Error added in v2.21.0

func (o *ListEKSRegionsForbidden) Error() string

type ListEKSRegionsOK added in v2.21.0

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

EKSRegionList

func NewListEKSRegionsOK added in v2.21.0

func NewListEKSRegionsOK() *ListEKSRegionsOK

NewListEKSRegionsOK creates a ListEKSRegionsOK with default headers values

func (*ListEKSRegionsOK) Error added in v2.21.0

func (o *ListEKSRegionsOK) Error() string

func (*ListEKSRegionsOK) GetPayload added in v2.21.0

func (o *ListEKSRegionsOK) GetPayload() []models.EKSRegionList

type ListEKSRegionsParams added in v2.21.0

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

ListEKSRegionsParams contains all the parameters to send to the API endpoint

for the list e k s regions operation.

Typically these are written to a http.Request.

func NewListEKSRegionsParams added in v2.21.0

func NewListEKSRegionsParams() *ListEKSRegionsParams

NewListEKSRegionsParams creates a new ListEKSRegionsParams 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 NewListEKSRegionsParamsWithContext added in v2.21.0

func NewListEKSRegionsParamsWithContext(ctx context.Context) *ListEKSRegionsParams

NewListEKSRegionsParamsWithContext creates a new ListEKSRegionsParams object with the ability to set a context for a request.

func NewListEKSRegionsParamsWithHTTPClient added in v2.21.0

func NewListEKSRegionsParamsWithHTTPClient(client *http.Client) *ListEKSRegionsParams

NewListEKSRegionsParamsWithHTTPClient creates a new ListEKSRegionsParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSRegionsParamsWithTimeout added in v2.21.0

func NewListEKSRegionsParamsWithTimeout(timeout time.Duration) *ListEKSRegionsParams

NewListEKSRegionsParamsWithTimeout creates a new ListEKSRegionsParams object with the ability to set a timeout on a request.

func (*ListEKSRegionsParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s regions params

func (*ListEKSRegionsParams) SetDefaults added in v2.21.0

func (o *ListEKSRegionsParams) SetDefaults()

SetDefaults hydrates default values in the list e k s regions params (not the query body).

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

func (*ListEKSRegionsParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s regions params

func (*ListEKSRegionsParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s regions params

func (*ListEKSRegionsParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s regions params

func (*ListEKSRegionsParams) WithDefaults added in v2.21.0

func (o *ListEKSRegionsParams) WithDefaults() *ListEKSRegionsParams

WithDefaults hydrates default values in the list e k s regions params (not the query body).

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

func (*ListEKSRegionsParams) WithHTTPClient added in v2.21.0

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

WithHTTPClient adds the HTTPClient to the list e k s regions params

func (*ListEKSRegionsParams) WithTimeout added in v2.21.0

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

WithTimeout adds the timeout to the list e k s regions params

func (*ListEKSRegionsParams) WriteToRequest added in v2.21.0

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

WriteToRequest writes these params to a swagger request

type ListEKSRegionsReader added in v2.21.0

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

ListEKSRegionsReader is a Reader for the ListEKSRegions structure.

func (*ListEKSRegionsReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSRegionsUnauthorized added in v2.21.0

type ListEKSRegionsUnauthorized struct {
}
ListEKSRegionsUnauthorized describes a response with status code 401, with default header values.

EmptyResponse is a empty response

func NewListEKSRegionsUnauthorized added in v2.21.0

func NewListEKSRegionsUnauthorized() *ListEKSRegionsUnauthorized

NewListEKSRegionsUnauthorized creates a ListEKSRegionsUnauthorized with default headers values

func (*ListEKSRegionsUnauthorized) Error added in v2.21.0

type ListEKSSecurityGroupsDefault added in v2.21.0

type ListEKSSecurityGroupsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSSecurityGroupsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSSecurityGroupsDefault added in v2.21.0

func NewListEKSSecurityGroupsDefault(code int) *ListEKSSecurityGroupsDefault

NewListEKSSecurityGroupsDefault creates a ListEKSSecurityGroupsDefault with default headers values

func (*ListEKSSecurityGroupsDefault) Code added in v2.21.0

Code gets the status code for the list e k s security groups default response

func (*ListEKSSecurityGroupsDefault) Error added in v2.21.0

func (*ListEKSSecurityGroupsDefault) GetPayload added in v2.21.0

type ListEKSSecurityGroupsForbidden added in v2.21.0

type ListEKSSecurityGroupsForbidden struct {
}
ListEKSSecurityGroupsForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListEKSSecurityGroupsForbidden added in v2.21.0

func NewListEKSSecurityGroupsForbidden() *ListEKSSecurityGroupsForbidden

NewListEKSSecurityGroupsForbidden creates a ListEKSSecurityGroupsForbidden with default headers values

func (*ListEKSSecurityGroupsForbidden) Error added in v2.21.0

type ListEKSSecurityGroupsOK added in v2.21.0

type ListEKSSecurityGroupsOK struct {
	Payload models.EKSSecurityGroupList
}
ListEKSSecurityGroupsOK describes a response with status code 200, with default header values.

EKSSecurityGroupList

func NewListEKSSecurityGroupsOK added in v2.21.0

func NewListEKSSecurityGroupsOK() *ListEKSSecurityGroupsOK

NewListEKSSecurityGroupsOK creates a ListEKSSecurityGroupsOK with default headers values

func (*ListEKSSecurityGroupsOK) Error added in v2.21.0

func (o *ListEKSSecurityGroupsOK) Error() string

func (*ListEKSSecurityGroupsOK) GetPayload added in v2.21.0

type ListEKSSecurityGroupsParams added in v2.21.0

type ListEKSSecurityGroupsParams struct {

	// AccessKeyID.
	AccessKeyID *string

	// Credential.
	Credential *string

	// Region.
	Region *string

	// SecretAccessKey.
	SecretAccessKey *string

	// VpcID.
	VpcID *string

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

ListEKSSecurityGroupsParams contains all the parameters to send to the API endpoint

for the list e k s security groups operation.

Typically these are written to a http.Request.

func NewListEKSSecurityGroupsParams added in v2.21.0

func NewListEKSSecurityGroupsParams() *ListEKSSecurityGroupsParams

NewListEKSSecurityGroupsParams creates a new ListEKSSecurityGroupsParams 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 NewListEKSSecurityGroupsParamsWithContext added in v2.21.0

func NewListEKSSecurityGroupsParamsWithContext(ctx context.Context) *ListEKSSecurityGroupsParams

NewListEKSSecurityGroupsParamsWithContext creates a new ListEKSSecurityGroupsParams object with the ability to set a context for a request.

func NewListEKSSecurityGroupsParamsWithHTTPClient added in v2.21.0

func NewListEKSSecurityGroupsParamsWithHTTPClient(client *http.Client) *ListEKSSecurityGroupsParams

NewListEKSSecurityGroupsParamsWithHTTPClient creates a new ListEKSSecurityGroupsParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSSecurityGroupsParamsWithTimeout added in v2.21.0

func NewListEKSSecurityGroupsParamsWithTimeout(timeout time.Duration) *ListEKSSecurityGroupsParams

NewListEKSSecurityGroupsParamsWithTimeout creates a new ListEKSSecurityGroupsParams object with the ability to set a timeout on a request.

func (*ListEKSSecurityGroupsParams) SetAccessKeyID added in v2.21.0

func (o *ListEKSSecurityGroupsParams) SetAccessKeyID(accessKeyID *string)

SetAccessKeyID adds the accessKeyId to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) SetCredential added in v2.21.0

func (o *ListEKSSecurityGroupsParams) SetCredential(credential *string)

SetCredential adds the credential to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) SetDefaults added in v2.21.0

func (o *ListEKSSecurityGroupsParams) SetDefaults()

SetDefaults hydrates default values in the list e k s security groups params (not the query body).

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

func (*ListEKSSecurityGroupsParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) SetRegion added in v2.21.0

func (o *ListEKSSecurityGroupsParams) SetRegion(region *string)

SetRegion adds the region to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) SetSecretAccessKey added in v2.21.0

func (o *ListEKSSecurityGroupsParams) SetSecretAccessKey(secretAccessKey *string)

SetSecretAccessKey adds the secretAccessKey to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) SetVpcID added in v2.21.0

func (o *ListEKSSecurityGroupsParams) SetVpcID(vpcID *string)

SetVpcID adds the vpcId to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithAccessKeyID added in v2.21.0

func (o *ListEKSSecurityGroupsParams) WithAccessKeyID(accessKeyID *string) *ListEKSSecurityGroupsParams

WithAccessKeyID adds the accessKeyID to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithCredential added in v2.21.0

func (o *ListEKSSecurityGroupsParams) WithCredential(credential *string) *ListEKSSecurityGroupsParams

WithCredential adds the credential to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithDefaults added in v2.21.0

WithDefaults hydrates default values in the list e k s security groups params (not the query body).

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

func (*ListEKSSecurityGroupsParams) WithHTTPClient added in v2.21.0

WithHTTPClient adds the HTTPClient to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithRegion added in v2.21.0

WithRegion adds the region to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithSecretAccessKey added in v2.21.0

func (o *ListEKSSecurityGroupsParams) WithSecretAccessKey(secretAccessKey *string) *ListEKSSecurityGroupsParams

WithSecretAccessKey adds the secretAccessKey to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithTimeout added in v2.21.0

WithTimeout adds the timeout to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WithVpcID added in v2.21.0

WithVpcID adds the vpcID to the list e k s security groups params

func (*ListEKSSecurityGroupsParams) WriteToRequest added in v2.21.0

WriteToRequest writes these params to a swagger request

type ListEKSSecurityGroupsReader added in v2.21.0

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

ListEKSSecurityGroupsReader is a Reader for the ListEKSSecurityGroups structure.

func (*ListEKSSecurityGroupsReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSSecurityGroupsUnauthorized added in v2.21.0

type ListEKSSecurityGroupsUnauthorized struct {
}
ListEKSSecurityGroupsUnauthorized describes a response with status code 401, with default header values.

EmptyResponse is a empty response

func NewListEKSSecurityGroupsUnauthorized added in v2.21.0

func NewListEKSSecurityGroupsUnauthorized() *ListEKSSecurityGroupsUnauthorized

NewListEKSSecurityGroupsUnauthorized creates a ListEKSSecurityGroupsUnauthorized with default headers values

func (*ListEKSSecurityGroupsUnauthorized) Error added in v2.21.0

type ListEKSSubnetsDefault added in v2.21.0

type ListEKSSubnetsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSSubnetsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSSubnetsDefault added in v2.21.0

func NewListEKSSubnetsDefault(code int) *ListEKSSubnetsDefault

NewListEKSSubnetsDefault creates a ListEKSSubnetsDefault with default headers values

func (*ListEKSSubnetsDefault) Code added in v2.21.0

func (o *ListEKSSubnetsDefault) Code() int

Code gets the status code for the list e k s subnets default response

func (*ListEKSSubnetsDefault) Error added in v2.21.0

func (o *ListEKSSubnetsDefault) Error() string

func (*ListEKSSubnetsDefault) GetPayload added in v2.21.0

func (o *ListEKSSubnetsDefault) GetPayload() *models.ErrorResponse

type ListEKSSubnetsNoCredentialsDefault added in v2.21.0

type ListEKSSubnetsNoCredentialsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSSubnetsNoCredentialsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSSubnetsNoCredentialsDefault added in v2.21.0

func NewListEKSSubnetsNoCredentialsDefault(code int) *ListEKSSubnetsNoCredentialsDefault

NewListEKSSubnetsNoCredentialsDefault creates a ListEKSSubnetsNoCredentialsDefault with default headers values

func (*ListEKSSubnetsNoCredentialsDefault) Code added in v2.21.0

Code gets the status code for the list e k s subnets no credentials default response

func (*ListEKSSubnetsNoCredentialsDefault) Error added in v2.21.0

func (*ListEKSSubnetsNoCredentialsDefault) GetPayload added in v2.21.0

type ListEKSSubnetsNoCredentialsForbidden added in v2.21.0

type ListEKSSubnetsNoCredentialsForbidden struct {
}
ListEKSSubnetsNoCredentialsForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListEKSSubnetsNoCredentialsForbidden added in v2.21.0

func NewListEKSSubnetsNoCredentialsForbidden() *ListEKSSubnetsNoCredentialsForbidden

NewListEKSSubnetsNoCredentialsForbidden creates a ListEKSSubnetsNoCredentialsForbidden with default headers values

func (*ListEKSSubnetsNoCredentialsForbidden) Error added in v2.21.0

type ListEKSSubnetsNoCredentialsOK added in v2.21.0

type ListEKSSubnetsNoCredentialsOK struct {
	Payload models.EKSSubnetList
}
ListEKSSubnetsNoCredentialsOK describes a response with status code 200, with default header values.

EKSSubnetList

func NewListEKSSubnetsNoCredentialsOK added in v2.21.0

func NewListEKSSubnetsNoCredentialsOK() *ListEKSSubnetsNoCredentialsOK

NewListEKSSubnetsNoCredentialsOK creates a ListEKSSubnetsNoCredentialsOK with default headers values

func (*ListEKSSubnetsNoCredentialsOK) Error added in v2.21.0

func (*ListEKSSubnetsNoCredentialsOK) GetPayload added in v2.21.0

type ListEKSSubnetsNoCredentialsParams added in v2.21.0

type ListEKSSubnetsNoCredentialsParams struct {

	// VpcID.
	VpcID *string

	// ClusterID.
	ClusterID string

	// ProjectID.
	ProjectID string

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

ListEKSSubnetsNoCredentialsParams contains all the parameters to send to the API endpoint

for the list e k s subnets no credentials operation.

Typically these are written to a http.Request.

func NewListEKSSubnetsNoCredentialsParams added in v2.21.0

func NewListEKSSubnetsNoCredentialsParams() *ListEKSSubnetsNoCredentialsParams

NewListEKSSubnetsNoCredentialsParams creates a new ListEKSSubnetsNoCredentialsParams 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 NewListEKSSubnetsNoCredentialsParamsWithContext added in v2.21.0

func NewListEKSSubnetsNoCredentialsParamsWithContext(ctx context.Context) *ListEKSSubnetsNoCredentialsParams

NewListEKSSubnetsNoCredentialsParamsWithContext creates a new ListEKSSubnetsNoCredentialsParams object with the ability to set a context for a request.

func NewListEKSSubnetsNoCredentialsParamsWithHTTPClient added in v2.21.0

func NewListEKSSubnetsNoCredentialsParamsWithHTTPClient(client *http.Client) *ListEKSSubnetsNoCredentialsParams

NewListEKSSubnetsNoCredentialsParamsWithHTTPClient creates a new ListEKSSubnetsNoCredentialsParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSSubnetsNoCredentialsParamsWithTimeout added in v2.21.0

func NewListEKSSubnetsNoCredentialsParamsWithTimeout(timeout time.Duration) *ListEKSSubnetsNoCredentialsParams

NewListEKSSubnetsNoCredentialsParamsWithTimeout creates a new ListEKSSubnetsNoCredentialsParams object with the ability to set a timeout on a request.

func (*ListEKSSubnetsNoCredentialsParams) SetClusterID added in v2.21.0

func (o *ListEKSSubnetsNoCredentialsParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) SetContext added in v2.21.0

SetContext adds the context to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) SetDefaults added in v2.21.0

func (o *ListEKSSubnetsNoCredentialsParams) SetDefaults()

SetDefaults hydrates default values in the list e k s subnets no credentials params (not the query body).

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

func (*ListEKSSubnetsNoCredentialsParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) SetProjectID added in v2.21.0

func (o *ListEKSSubnetsNoCredentialsParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) SetVpcID added in v2.21.0

func (o *ListEKSSubnetsNoCredentialsParams) SetVpcID(vpcID *string)

SetVpcID adds the vpcId to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) WithClusterID added in v2.21.0

WithClusterID adds the clusterID to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) WithDefaults added in v2.21.0

WithDefaults hydrates default values in the list e k s subnets no credentials params (not the query body).

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

func (*ListEKSSubnetsNoCredentialsParams) WithHTTPClient added in v2.21.0

WithHTTPClient adds the HTTPClient to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) WithProjectID added in v2.21.0

WithProjectID adds the projectID to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) WithTimeout added in v2.21.0

WithTimeout adds the timeout to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) WithVpcID added in v2.21.0

WithVpcID adds the vpcID to the list e k s subnets no credentials params

func (*ListEKSSubnetsNoCredentialsParams) WriteToRequest added in v2.21.0

WriteToRequest writes these params to a swagger request

type ListEKSSubnetsNoCredentialsReader added in v2.21.0

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

ListEKSSubnetsNoCredentialsReader is a Reader for the ListEKSSubnetsNoCredentials structure.

func (*ListEKSSubnetsNoCredentialsReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSSubnetsNoCredentialsUnauthorized added in v2.21.0

type ListEKSSubnetsNoCredentialsUnauthorized struct {
}
ListEKSSubnetsNoCredentialsUnauthorized describes a response with status code 401, with default header values.

EmptyResponse is a empty response

func NewListEKSSubnetsNoCredentialsUnauthorized added in v2.21.0

func NewListEKSSubnetsNoCredentialsUnauthorized() *ListEKSSubnetsNoCredentialsUnauthorized

NewListEKSSubnetsNoCredentialsUnauthorized creates a ListEKSSubnetsNoCredentialsUnauthorized with default headers values

func (*ListEKSSubnetsNoCredentialsUnauthorized) Error added in v2.21.0

type ListEKSSubnetsOK added in v2.21.0

type ListEKSSubnetsOK struct {
	Payload models.EKSSubnetList
}
ListEKSSubnetsOK describes a response with status code 200, with default header values.

EKSSubnetList

func NewListEKSSubnetsOK added in v2.21.0

func NewListEKSSubnetsOK() *ListEKSSubnetsOK

NewListEKSSubnetsOK creates a ListEKSSubnetsOK with default headers values

func (*ListEKSSubnetsOK) Error added in v2.21.0

func (o *ListEKSSubnetsOK) Error() string

func (*ListEKSSubnetsOK) GetPayload added in v2.21.0

func (o *ListEKSSubnetsOK) GetPayload() models.EKSSubnetList

type ListEKSSubnetsParams added in v2.21.0

type ListEKSSubnetsParams struct {

	// AccessKeyID.
	AccessKeyID *string

	// Credential.
	Credential *string

	// Region.
	Region *string

	// SecretAccessKey.
	SecretAccessKey *string

	// VpcID.
	VpcID *string

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

ListEKSSubnetsParams contains all the parameters to send to the API endpoint

for the list e k s subnets operation.

Typically these are written to a http.Request.

func NewListEKSSubnetsParams added in v2.21.0

func NewListEKSSubnetsParams() *ListEKSSubnetsParams

NewListEKSSubnetsParams creates a new ListEKSSubnetsParams 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 NewListEKSSubnetsParamsWithContext added in v2.21.0

func NewListEKSSubnetsParamsWithContext(ctx context.Context) *ListEKSSubnetsParams

NewListEKSSubnetsParamsWithContext creates a new ListEKSSubnetsParams object with the ability to set a context for a request.

func NewListEKSSubnetsParamsWithHTTPClient added in v2.21.0

func NewListEKSSubnetsParamsWithHTTPClient(client *http.Client) *ListEKSSubnetsParams

NewListEKSSubnetsParamsWithHTTPClient creates a new ListEKSSubnetsParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSSubnetsParamsWithTimeout added in v2.21.0

func NewListEKSSubnetsParamsWithTimeout(timeout time.Duration) *ListEKSSubnetsParams

NewListEKSSubnetsParamsWithTimeout creates a new ListEKSSubnetsParams object with the ability to set a timeout on a request.

func (*ListEKSSubnetsParams) SetAccessKeyID added in v2.21.0

func (o *ListEKSSubnetsParams) SetAccessKeyID(accessKeyID *string)

SetAccessKeyID adds the accessKeyId to the list e k s subnets params

func (*ListEKSSubnetsParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s subnets params

func (*ListEKSSubnetsParams) SetCredential added in v2.21.0

func (o *ListEKSSubnetsParams) SetCredential(credential *string)

SetCredential adds the credential to the list e k s subnets params

func (*ListEKSSubnetsParams) SetDefaults added in v2.21.0

func (o *ListEKSSubnetsParams) SetDefaults()

SetDefaults hydrates default values in the list e k s subnets params (not the query body).

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

func (*ListEKSSubnetsParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s subnets params

func (*ListEKSSubnetsParams) SetRegion added in v2.21.0

func (o *ListEKSSubnetsParams) SetRegion(region *string)

SetRegion adds the region to the list e k s subnets params

func (*ListEKSSubnetsParams) SetSecretAccessKey added in v2.21.0

func (o *ListEKSSubnetsParams) SetSecretAccessKey(secretAccessKey *string)

SetSecretAccessKey adds the secretAccessKey to the list e k s subnets params

func (*ListEKSSubnetsParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s subnets params

func (*ListEKSSubnetsParams) SetVpcID added in v2.21.0

func (o *ListEKSSubnetsParams) SetVpcID(vpcID *string)

SetVpcID adds the vpcId to the list e k s subnets params

func (*ListEKSSubnetsParams) WithAccessKeyID added in v2.21.0

func (o *ListEKSSubnetsParams) WithAccessKeyID(accessKeyID *string) *ListEKSSubnetsParams

WithAccessKeyID adds the accessKeyID to the list e k s subnets params

func (*ListEKSSubnetsParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s subnets params

func (*ListEKSSubnetsParams) WithCredential added in v2.21.0

func (o *ListEKSSubnetsParams) WithCredential(credential *string) *ListEKSSubnetsParams

WithCredential adds the credential to the list e k s subnets params

func (*ListEKSSubnetsParams) WithDefaults added in v2.21.0

func (o *ListEKSSubnetsParams) WithDefaults() *ListEKSSubnetsParams

WithDefaults hydrates default values in the list e k s subnets params (not the query body).

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

func (*ListEKSSubnetsParams) WithHTTPClient added in v2.21.0

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

WithHTTPClient adds the HTTPClient to the list e k s subnets params

func (*ListEKSSubnetsParams) WithRegion added in v2.21.0

func (o *ListEKSSubnetsParams) WithRegion(region *string) *ListEKSSubnetsParams

WithRegion adds the region to the list e k s subnets params

func (*ListEKSSubnetsParams) WithSecretAccessKey added in v2.21.0

func (o *ListEKSSubnetsParams) WithSecretAccessKey(secretAccessKey *string) *ListEKSSubnetsParams

WithSecretAccessKey adds the secretAccessKey to the list e k s subnets params

func (*ListEKSSubnetsParams) WithTimeout added in v2.21.0

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

WithTimeout adds the timeout to the list e k s subnets params

func (*ListEKSSubnetsParams) WithVpcID added in v2.21.0

func (o *ListEKSSubnetsParams) WithVpcID(vpcID *string) *ListEKSSubnetsParams

WithVpcID adds the vpcID to the list e k s subnets params

func (*ListEKSSubnetsParams) WriteToRequest added in v2.21.0

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

WriteToRequest writes these params to a swagger request

type ListEKSSubnetsReader added in v2.21.0

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

ListEKSSubnetsReader is a Reader for the ListEKSSubnets structure.

func (*ListEKSSubnetsReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSVPCSDefault added in v2.21.0

type ListEKSVPCSDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSVPCSDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSVPCSDefault added in v2.21.0

func NewListEKSVPCSDefault(code int) *ListEKSVPCSDefault

NewListEKSVPCSDefault creates a ListEKSVPCSDefault with default headers values

func (*ListEKSVPCSDefault) Code added in v2.21.0

func (o *ListEKSVPCSDefault) Code() int

Code gets the status code for the list e k s v p c s default response

func (*ListEKSVPCSDefault) Error added in v2.21.0

func (o *ListEKSVPCSDefault) Error() string

func (*ListEKSVPCSDefault) GetPayload added in v2.21.0

func (o *ListEKSVPCSDefault) GetPayload() *models.ErrorResponse

type ListEKSVPCSOK added in v2.21.0

type ListEKSVPCSOK struct {
	Payload models.EKSVPCList
}
ListEKSVPCSOK describes a response with status code 200, with default header values.

EKSVPCList

func NewListEKSVPCSOK added in v2.21.0

func NewListEKSVPCSOK() *ListEKSVPCSOK

NewListEKSVPCSOK creates a ListEKSVPCSOK with default headers values

func (*ListEKSVPCSOK) Error added in v2.21.0

func (o *ListEKSVPCSOK) Error() string

func (*ListEKSVPCSOK) GetPayload added in v2.21.0

func (o *ListEKSVPCSOK) GetPayload() models.EKSVPCList

type ListEKSVPCSParams added in v2.21.0

type ListEKSVPCSParams struct {

	// AccessKeyID.
	AccessKeyID *string

	// Credential.
	Credential *string

	// Region.
	Region *string

	// SecretAccessKey.
	SecretAccessKey *string

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

ListEKSVPCSParams contains all the parameters to send to the API endpoint

for the list e k s v p c s operation.

Typically these are written to a http.Request.

func NewListEKSVPCSParams added in v2.21.0

func NewListEKSVPCSParams() *ListEKSVPCSParams

NewListEKSVPCSParams creates a new ListEKSVPCSParams 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 NewListEKSVPCSParamsWithContext added in v2.21.0

func NewListEKSVPCSParamsWithContext(ctx context.Context) *ListEKSVPCSParams

NewListEKSVPCSParamsWithContext creates a new ListEKSVPCSParams object with the ability to set a context for a request.

func NewListEKSVPCSParamsWithHTTPClient added in v2.21.0

func NewListEKSVPCSParamsWithHTTPClient(client *http.Client) *ListEKSVPCSParams

NewListEKSVPCSParamsWithHTTPClient creates a new ListEKSVPCSParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSVPCSParamsWithTimeout added in v2.21.0

func NewListEKSVPCSParamsWithTimeout(timeout time.Duration) *ListEKSVPCSParams

NewListEKSVPCSParamsWithTimeout creates a new ListEKSVPCSParams object with the ability to set a timeout on a request.

func (*ListEKSVPCSParams) SetAccessKeyID added in v2.21.0

func (o *ListEKSVPCSParams) SetAccessKeyID(accessKeyID *string)

SetAccessKeyID adds the accessKeyId to the list e k s v p c s params

func (*ListEKSVPCSParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s v p c s params

func (*ListEKSVPCSParams) SetCredential added in v2.21.0

func (o *ListEKSVPCSParams) SetCredential(credential *string)

SetCredential adds the credential to the list e k s v p c s params

func (*ListEKSVPCSParams) SetDefaults added in v2.21.0

func (o *ListEKSVPCSParams) SetDefaults()

SetDefaults hydrates default values in the list e k s v p c s params (not the query body).

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

func (*ListEKSVPCSParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s v p c s params

func (*ListEKSVPCSParams) SetRegion added in v2.21.0

func (o *ListEKSVPCSParams) SetRegion(region *string)

SetRegion adds the region to the list e k s v p c s params

func (*ListEKSVPCSParams) SetSecretAccessKey added in v2.21.0

func (o *ListEKSVPCSParams) SetSecretAccessKey(secretAccessKey *string)

SetSecretAccessKey adds the secretAccessKey to the list e k s v p c s params

func (*ListEKSVPCSParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s v p c s params

func (*ListEKSVPCSParams) WithAccessKeyID added in v2.21.0

func (o *ListEKSVPCSParams) WithAccessKeyID(accessKeyID *string) *ListEKSVPCSParams

WithAccessKeyID adds the accessKeyID to the list e k s v p c s params

func (*ListEKSVPCSParams) WithContext added in v2.21.0

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

WithContext adds the context to the list e k s v p c s params

func (*ListEKSVPCSParams) WithCredential added in v2.21.0

func (o *ListEKSVPCSParams) WithCredential(credential *string) *ListEKSVPCSParams

WithCredential adds the credential to the list e k s v p c s params

func (*ListEKSVPCSParams) WithDefaults added in v2.21.0

func (o *ListEKSVPCSParams) WithDefaults() *ListEKSVPCSParams

WithDefaults hydrates default values in the list e k s v p c s params (not the query body).

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

func (*ListEKSVPCSParams) WithHTTPClient added in v2.21.0

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

WithHTTPClient adds the HTTPClient to the list e k s v p c s params

func (*ListEKSVPCSParams) WithRegion added in v2.21.0

func (o *ListEKSVPCSParams) WithRegion(region *string) *ListEKSVPCSParams

WithRegion adds the region to the list e k s v p c s params

func (*ListEKSVPCSParams) WithSecretAccessKey added in v2.21.0

func (o *ListEKSVPCSParams) WithSecretAccessKey(secretAccessKey *string) *ListEKSVPCSParams

WithSecretAccessKey adds the secretAccessKey to the list e k s v p c s params

func (*ListEKSVPCSParams) WithTimeout added in v2.21.0

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

WithTimeout adds the timeout to the list e k s v p c s params

func (*ListEKSVPCSParams) WriteToRequest added in v2.21.0

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

WriteToRequest writes these params to a swagger request

type ListEKSVPCSReader added in v2.21.0

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

ListEKSVPCSReader is a Reader for the ListEKSVPCS structure.

func (*ListEKSVPCSReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSVPCsNoCredentialsDefault added in v2.21.0

type ListEKSVPCsNoCredentialsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSVPCsNoCredentialsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSVPCsNoCredentialsDefault added in v2.21.0

func NewListEKSVPCsNoCredentialsDefault(code int) *ListEKSVPCsNoCredentialsDefault

NewListEKSVPCsNoCredentialsDefault creates a ListEKSVPCsNoCredentialsDefault with default headers values

func (*ListEKSVPCsNoCredentialsDefault) Code added in v2.21.0

Code gets the status code for the list e k s v p cs no credentials default response

func (*ListEKSVPCsNoCredentialsDefault) Error added in v2.21.0

func (*ListEKSVPCsNoCredentialsDefault) GetPayload added in v2.21.0

type ListEKSVPCsNoCredentialsForbidden added in v2.21.0

type ListEKSVPCsNoCredentialsForbidden struct {
}
ListEKSVPCsNoCredentialsForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListEKSVPCsNoCredentialsForbidden added in v2.21.0

func NewListEKSVPCsNoCredentialsForbidden() *ListEKSVPCsNoCredentialsForbidden

NewListEKSVPCsNoCredentialsForbidden creates a ListEKSVPCsNoCredentialsForbidden with default headers values

func (*ListEKSVPCsNoCredentialsForbidden) Error added in v2.21.0

type ListEKSVPCsNoCredentialsOK added in v2.21.0

type ListEKSVPCsNoCredentialsOK struct {
	Payload models.EKSVPCList
}
ListEKSVPCsNoCredentialsOK describes a response with status code 200, with default header values.

EKSVPCList

func NewListEKSVPCsNoCredentialsOK added in v2.21.0

func NewListEKSVPCsNoCredentialsOK() *ListEKSVPCsNoCredentialsOK

NewListEKSVPCsNoCredentialsOK creates a ListEKSVPCsNoCredentialsOK with default headers values

func (*ListEKSVPCsNoCredentialsOK) Error added in v2.21.0

func (*ListEKSVPCsNoCredentialsOK) GetPayload added in v2.21.0

type ListEKSVPCsNoCredentialsParams added in v2.21.0

type ListEKSVPCsNoCredentialsParams struct {

	// ClusterID.
	ClusterID string

	// ProjectID.
	ProjectID string

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

ListEKSVPCsNoCredentialsParams contains all the parameters to send to the API endpoint

for the list e k s v p cs no credentials operation.

Typically these are written to a http.Request.

func NewListEKSVPCsNoCredentialsParams added in v2.21.0

func NewListEKSVPCsNoCredentialsParams() *ListEKSVPCsNoCredentialsParams

NewListEKSVPCsNoCredentialsParams creates a new ListEKSVPCsNoCredentialsParams 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 NewListEKSVPCsNoCredentialsParamsWithContext added in v2.21.0

func NewListEKSVPCsNoCredentialsParamsWithContext(ctx context.Context) *ListEKSVPCsNoCredentialsParams

NewListEKSVPCsNoCredentialsParamsWithContext creates a new ListEKSVPCsNoCredentialsParams object with the ability to set a context for a request.

func NewListEKSVPCsNoCredentialsParamsWithHTTPClient added in v2.21.0

func NewListEKSVPCsNoCredentialsParamsWithHTTPClient(client *http.Client) *ListEKSVPCsNoCredentialsParams

NewListEKSVPCsNoCredentialsParamsWithHTTPClient creates a new ListEKSVPCsNoCredentialsParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSVPCsNoCredentialsParamsWithTimeout added in v2.21.0

func NewListEKSVPCsNoCredentialsParamsWithTimeout(timeout time.Duration) *ListEKSVPCsNoCredentialsParams

NewListEKSVPCsNoCredentialsParamsWithTimeout creates a new ListEKSVPCsNoCredentialsParams object with the ability to set a timeout on a request.

func (*ListEKSVPCsNoCredentialsParams) SetClusterID added in v2.21.0

func (o *ListEKSVPCsNoCredentialsParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) SetDefaults added in v2.21.0

func (o *ListEKSVPCsNoCredentialsParams) SetDefaults()

SetDefaults hydrates default values in the list e k s v p cs no credentials params (not the query body).

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

func (*ListEKSVPCsNoCredentialsParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) SetProjectID added in v2.21.0

func (o *ListEKSVPCsNoCredentialsParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) WithClusterID added in v2.21.0

WithClusterID adds the clusterID to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) WithDefaults added in v2.21.0

WithDefaults hydrates default values in the list e k s v p cs no credentials params (not the query body).

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

func (*ListEKSVPCsNoCredentialsParams) WithHTTPClient added in v2.21.0

WithHTTPClient adds the HTTPClient to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) WithProjectID added in v2.21.0

WithProjectID adds the projectID to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) WithTimeout added in v2.21.0

WithTimeout adds the timeout to the list e k s v p cs no credentials params

func (*ListEKSVPCsNoCredentialsParams) WriteToRequest added in v2.21.0

WriteToRequest writes these params to a swagger request

type ListEKSVPCsNoCredentialsReader added in v2.21.0

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

ListEKSVPCsNoCredentialsReader is a Reader for the ListEKSVPCsNoCredentials structure.

func (*ListEKSVPCsNoCredentialsReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ListEKSVPCsNoCredentialsUnauthorized added in v2.21.0

type ListEKSVPCsNoCredentialsUnauthorized struct {
}
ListEKSVPCsNoCredentialsUnauthorized describes a response with status code 401, with default header values.

EmptyResponse is a empty response

func NewListEKSVPCsNoCredentialsUnauthorized added in v2.21.0

func NewListEKSVPCsNoCredentialsUnauthorized() *ListEKSVPCsNoCredentialsUnauthorized

NewListEKSVPCsNoCredentialsUnauthorized creates a ListEKSVPCsNoCredentialsUnauthorized with default headers values

func (*ListEKSVPCsNoCredentialsUnauthorized) Error added in v2.21.0

type ListEKSVersionsDefault added in v2.21.0

type ListEKSVersionsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListEKSVersionsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListEKSVersionsDefault added in v2.21.0

func NewListEKSVersionsDefault(code int) *ListEKSVersionsDefault

NewListEKSVersionsDefault creates a ListEKSVersionsDefault with default headers values

func (*ListEKSVersionsDefault) Code added in v2.21.0

func (o *ListEKSVersionsDefault) Code() int

Code gets the status code for the list e k s versions default response

func (*ListEKSVersionsDefault) Error added in v2.21.0

func (o *ListEKSVersionsDefault) Error() string

func (*ListEKSVersionsDefault) GetPayload added in v2.21.0

func (o *ListEKSVersionsDefault) GetPayload() *models.ErrorResponse

type ListEKSVersionsOK added in v2.21.0

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

MasterVersion

func NewListEKSVersionsOK added in v2.21.0

func NewListEKSVersionsOK() *ListEKSVersionsOK

NewListEKSVersionsOK creates a ListEKSVersionsOK with default headers values

func (*ListEKSVersionsOK) Error added in v2.21.0

func (o *ListEKSVersionsOK) Error() string

func (*ListEKSVersionsOK) GetPayload added in v2.21.0

func (o *ListEKSVersionsOK) GetPayload() []*models.MasterVersion

type ListEKSVersionsParams added in v2.21.0

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

ListEKSVersionsParams contains all the parameters to send to the API endpoint

for the list e k s versions operation.

Typically these are written to a http.Request.

func NewListEKSVersionsParams added in v2.21.0

func NewListEKSVersionsParams() *ListEKSVersionsParams

NewListEKSVersionsParams creates a new ListEKSVersionsParams 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 NewListEKSVersionsParamsWithContext added in v2.21.0

func NewListEKSVersionsParamsWithContext(ctx context.Context) *ListEKSVersionsParams

NewListEKSVersionsParamsWithContext creates a new ListEKSVersionsParams object with the ability to set a context for a request.

func NewListEKSVersionsParamsWithHTTPClient added in v2.21.0

func NewListEKSVersionsParamsWithHTTPClient(client *http.Client) *ListEKSVersionsParams

NewListEKSVersionsParamsWithHTTPClient creates a new ListEKSVersionsParams object with the ability to set a custom HTTPClient for a request.

func NewListEKSVersionsParamsWithTimeout added in v2.21.0

func NewListEKSVersionsParamsWithTimeout(timeout time.Duration) *ListEKSVersionsParams

NewListEKSVersionsParamsWithTimeout creates a new ListEKSVersionsParams object with the ability to set a timeout on a request.

func (*ListEKSVersionsParams) SetContext added in v2.21.0

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

SetContext adds the context to the list e k s versions params

func (*ListEKSVersionsParams) SetDefaults added in v2.21.0

func (o *ListEKSVersionsParams) SetDefaults()

SetDefaults hydrates default values in the list e k s versions params (not the query body).

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

func (*ListEKSVersionsParams) SetHTTPClient added in v2.21.0

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

SetHTTPClient adds the HTTPClient to the list e k s versions params

func (*ListEKSVersionsParams) SetTimeout added in v2.21.0

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

SetTimeout adds the timeout to the list e k s versions params

func (*ListEKSVersionsParams) WithContext added in v2.21.0

WithContext adds the context to the list e k s versions params

func (*ListEKSVersionsParams) WithDefaults added in v2.21.0

func (o *ListEKSVersionsParams) WithDefaults() *ListEKSVersionsParams

WithDefaults hydrates default values in the list e k s versions params (not the query body).

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

func (*ListEKSVersionsParams) WithHTTPClient added in v2.21.0

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

WithHTTPClient adds the HTTPClient to the list e k s versions params

func (*ListEKSVersionsParams) WithTimeout added in v2.21.0

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

WithTimeout adds the timeout to the list e k s versions params

func (*ListEKSVersionsParams) WriteToRequest added in v2.21.0

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

WriteToRequest writes these params to a swagger request

type ListEKSVersionsReader added in v2.21.0

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

ListEKSVersionsReader is a Reader for the ListEKSVersions structure.

func (*ListEKSVersionsReader) ReadResponse added in v2.21.0

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

ReadResponse reads a server response into the received o.

type ValidateEKSCredentialsDefault

type ValidateEKSCredentialsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ValidateEKSCredentialsDefault describes a response with status code -1, with default header values.

errorResponse

func NewValidateEKSCredentialsDefault

func NewValidateEKSCredentialsDefault(code int) *ValidateEKSCredentialsDefault

NewValidateEKSCredentialsDefault creates a ValidateEKSCredentialsDefault with default headers values

func (*ValidateEKSCredentialsDefault) Code

Code gets the status code for the validate e k s credentials default response

func (*ValidateEKSCredentialsDefault) Error

func (*ValidateEKSCredentialsDefault) GetPayload

type ValidateEKSCredentialsOK

type ValidateEKSCredentialsOK struct {
}
ValidateEKSCredentialsOK describes a response with status code 200, with default header values.

EmptyResponse is a empty response

func NewValidateEKSCredentialsOK

func NewValidateEKSCredentialsOK() *ValidateEKSCredentialsOK

NewValidateEKSCredentialsOK creates a ValidateEKSCredentialsOK with default headers values

func (*ValidateEKSCredentialsOK) Error

func (o *ValidateEKSCredentialsOK) Error() string

type ValidateEKSCredentialsParams

type ValidateEKSCredentialsParams struct {

	// AccessKeyID.
	AccessKeyID *string

	// Credential.
	Credential *string

	// Region.
	Region *string

	// SecretAccessKey.
	SecretAccessKey *string

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

ValidateEKSCredentialsParams contains all the parameters to send to the API endpoint

for the validate e k s credentials operation.

Typically these are written to a http.Request.

func NewValidateEKSCredentialsParams

func NewValidateEKSCredentialsParams() *ValidateEKSCredentialsParams

NewValidateEKSCredentialsParams creates a new ValidateEKSCredentialsParams 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 NewValidateEKSCredentialsParamsWithContext

func NewValidateEKSCredentialsParamsWithContext(ctx context.Context) *ValidateEKSCredentialsParams

NewValidateEKSCredentialsParamsWithContext creates a new ValidateEKSCredentialsParams object with the ability to set a context for a request.

func NewValidateEKSCredentialsParamsWithHTTPClient

func NewValidateEKSCredentialsParamsWithHTTPClient(client *http.Client) *ValidateEKSCredentialsParams

NewValidateEKSCredentialsParamsWithHTTPClient creates a new ValidateEKSCredentialsParams object with the ability to set a custom HTTPClient for a request.

func NewValidateEKSCredentialsParamsWithTimeout

func NewValidateEKSCredentialsParamsWithTimeout(timeout time.Duration) *ValidateEKSCredentialsParams

NewValidateEKSCredentialsParamsWithTimeout creates a new ValidateEKSCredentialsParams object with the ability to set a timeout on a request.

func (*ValidateEKSCredentialsParams) SetAccessKeyID

func (o *ValidateEKSCredentialsParams) SetAccessKeyID(accessKeyID *string)

SetAccessKeyID adds the accessKeyId to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) SetContext

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

SetContext adds the context to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) SetCredential

func (o *ValidateEKSCredentialsParams) SetCredential(credential *string)

SetCredential adds the credential to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) SetDefaults

func (o *ValidateEKSCredentialsParams) SetDefaults()

SetDefaults hydrates default values in the validate e k s credentials params (not the query body).

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

func (*ValidateEKSCredentialsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) SetRegion

func (o *ValidateEKSCredentialsParams) SetRegion(region *string)

SetRegion adds the region to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) SetSecretAccessKey

func (o *ValidateEKSCredentialsParams) SetSecretAccessKey(secretAccessKey *string)

SetSecretAccessKey adds the secretAccessKey to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) SetTimeout

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

SetTimeout adds the timeout to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WithAccessKeyID

func (o *ValidateEKSCredentialsParams) WithAccessKeyID(accessKeyID *string) *ValidateEKSCredentialsParams

WithAccessKeyID adds the accessKeyID to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WithContext

WithContext adds the context to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WithCredential

func (o *ValidateEKSCredentialsParams) WithCredential(credential *string) *ValidateEKSCredentialsParams

WithCredential adds the credential to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WithDefaults

WithDefaults hydrates default values in the validate e k s credentials params (not the query body).

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

func (*ValidateEKSCredentialsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WithRegion

WithRegion adds the region to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WithSecretAccessKey

func (o *ValidateEKSCredentialsParams) WithSecretAccessKey(secretAccessKey *string) *ValidateEKSCredentialsParams

WithSecretAccessKey adds the secretAccessKey to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WithTimeout

WithTimeout adds the timeout to the validate e k s credentials params

func (*ValidateEKSCredentialsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ValidateEKSCredentialsReader

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

ValidateEKSCredentialsReader is a Reader for the ValidateEKSCredentials structure.

func (*ValidateEKSCredentialsReader) ReadResponse

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