Documentation ¶
Index ¶
- type CheckClientVersionOK
- type CheckClientVersionParams
- func NewCheckClientVersionParams() *CheckClientVersionParams
- func NewCheckClientVersionParamsWithContext(ctx context.Context) *CheckClientVersionParams
- func NewCheckClientVersionParamsWithHTTPClient(client *http.Client) *CheckClientVersionParams
- func NewCheckClientVersionParamsWithTimeout(timeout time.Duration) *CheckClientVersionParams
- func (o *CheckClientVersionParams) SetContext(ctx context.Context)
- func (o *CheckClientVersionParams) SetHTTPClient(client *http.Client)
- func (o *CheckClientVersionParams) SetTimeout(timeout time.Duration)
- func (o *CheckClientVersionParams) SetVersion(version string)
- func (o *CheckClientVersionParams) WithContext(ctx context.Context) *CheckClientVersionParams
- func (o *CheckClientVersionParams) WithHTTPClient(client *http.Client) *CheckClientVersionParams
- func (o *CheckClientVersionParams) WithTimeout(timeout time.Duration) *CheckClientVersionParams
- func (o *CheckClientVersionParams) WithVersion(version string) *CheckClientVersionParams
- func (o *CheckClientVersionParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type CheckClientVersionReader
- type Client
- func (a *Client) CheckClientVersion(params *CheckClientVersionParams) (*CheckClientVersionOK, error)
- func (a *Client) CreateRDSDatabaseUtil(params *CreateRDSDatabaseUtilParams) (*CreateRDSDatabaseUtilOK, error)
- func (a *Client) GetStackMatrixUtil(params *GetStackMatrixUtilParams) (*GetStackMatrixUtilOK, error)
- func (a *Client) SetTransport(transport runtime.ClientTransport)
- func (a *Client) TestAmbariDatabaseUtil(params *TestAmbariDatabaseUtilParams) (*TestAmbariDatabaseUtilOK, error)
- type CreateRDSDatabaseUtilOK
- type CreateRDSDatabaseUtilParams
- func NewCreateRDSDatabaseUtilParams() *CreateRDSDatabaseUtilParams
- func NewCreateRDSDatabaseUtilParamsWithContext(ctx context.Context) *CreateRDSDatabaseUtilParams
- func NewCreateRDSDatabaseUtilParamsWithHTTPClient(client *http.Client) *CreateRDSDatabaseUtilParams
- func NewCreateRDSDatabaseUtilParamsWithTimeout(timeout time.Duration) *CreateRDSDatabaseUtilParams
- func (o *CreateRDSDatabaseUtilParams) SetBody(body *models_cloudbreak.RDSBuildRequest)
- func (o *CreateRDSDatabaseUtilParams) SetContext(ctx context.Context)
- func (o *CreateRDSDatabaseUtilParams) SetHTTPClient(client *http.Client)
- func (o *CreateRDSDatabaseUtilParams) SetTarget(target []string)
- func (o *CreateRDSDatabaseUtilParams) SetTimeout(timeout time.Duration)
- func (o *CreateRDSDatabaseUtilParams) WithBody(body *models_cloudbreak.RDSBuildRequest) *CreateRDSDatabaseUtilParams
- func (o *CreateRDSDatabaseUtilParams) WithContext(ctx context.Context) *CreateRDSDatabaseUtilParams
- func (o *CreateRDSDatabaseUtilParams) WithHTTPClient(client *http.Client) *CreateRDSDatabaseUtilParams
- func (o *CreateRDSDatabaseUtilParams) WithTarget(target []string) *CreateRDSDatabaseUtilParams
- func (o *CreateRDSDatabaseUtilParams) WithTimeout(timeout time.Duration) *CreateRDSDatabaseUtilParams
- func (o *CreateRDSDatabaseUtilParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type CreateRDSDatabaseUtilReader
- type GetStackMatrixUtilOK
- type GetStackMatrixUtilParams
- func NewGetStackMatrixUtilParams() *GetStackMatrixUtilParams
- func NewGetStackMatrixUtilParamsWithContext(ctx context.Context) *GetStackMatrixUtilParams
- func NewGetStackMatrixUtilParamsWithHTTPClient(client *http.Client) *GetStackMatrixUtilParams
- func NewGetStackMatrixUtilParamsWithTimeout(timeout time.Duration) *GetStackMatrixUtilParams
- func (o *GetStackMatrixUtilParams) SetContext(ctx context.Context)
- func (o *GetStackMatrixUtilParams) SetHTTPClient(client *http.Client)
- func (o *GetStackMatrixUtilParams) SetTimeout(timeout time.Duration)
- func (o *GetStackMatrixUtilParams) WithContext(ctx context.Context) *GetStackMatrixUtilParams
- func (o *GetStackMatrixUtilParams) WithHTTPClient(client *http.Client) *GetStackMatrixUtilParams
- func (o *GetStackMatrixUtilParams) WithTimeout(timeout time.Duration) *GetStackMatrixUtilParams
- func (o *GetStackMatrixUtilParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type GetStackMatrixUtilReader
- type TestAmbariDatabaseUtilOK
- type TestAmbariDatabaseUtilParams
- func NewTestAmbariDatabaseUtilParams() *TestAmbariDatabaseUtilParams
- func NewTestAmbariDatabaseUtilParamsWithContext(ctx context.Context) *TestAmbariDatabaseUtilParams
- func NewTestAmbariDatabaseUtilParamsWithHTTPClient(client *http.Client) *TestAmbariDatabaseUtilParams
- func NewTestAmbariDatabaseUtilParamsWithTimeout(timeout time.Duration) *TestAmbariDatabaseUtilParams
- func (o *TestAmbariDatabaseUtilParams) SetBody(body *models_cloudbreak.AmbariDatabaseDetails)
- func (o *TestAmbariDatabaseUtilParams) SetContext(ctx context.Context)
- func (o *TestAmbariDatabaseUtilParams) SetHTTPClient(client *http.Client)
- func (o *TestAmbariDatabaseUtilParams) SetTimeout(timeout time.Duration)
- func (o *TestAmbariDatabaseUtilParams) WithBody(body *models_cloudbreak.AmbariDatabaseDetails) *TestAmbariDatabaseUtilParams
- func (o *TestAmbariDatabaseUtilParams) WithContext(ctx context.Context) *TestAmbariDatabaseUtilParams
- func (o *TestAmbariDatabaseUtilParams) WithHTTPClient(client *http.Client) *TestAmbariDatabaseUtilParams
- func (o *TestAmbariDatabaseUtilParams) WithTimeout(timeout time.Duration) *TestAmbariDatabaseUtilParams
- func (o *TestAmbariDatabaseUtilParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type TestAmbariDatabaseUtilReader
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CheckClientVersionOK ¶
type CheckClientVersionOK struct {
Payload *models_cloudbreak.VersionCheckResult
}
CheckClientVersionOK handles this case with default header values.
successful operation
func NewCheckClientVersionOK ¶
func NewCheckClientVersionOK() *CheckClientVersionOK
NewCheckClientVersionOK creates a CheckClientVersionOK with default headers values
func (*CheckClientVersionOK) Error ¶
func (o *CheckClientVersionOK) Error() string
type CheckClientVersionParams ¶
type CheckClientVersionParams struct { /*Version*/ Version string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
CheckClientVersionParams contains all the parameters to send to the API endpoint for the check client version operation typically these are written to a http.Request
func NewCheckClientVersionParams ¶
func NewCheckClientVersionParams() *CheckClientVersionParams
NewCheckClientVersionParams creates a new CheckClientVersionParams object with the default values initialized.
func NewCheckClientVersionParamsWithContext ¶
func NewCheckClientVersionParamsWithContext(ctx context.Context) *CheckClientVersionParams
NewCheckClientVersionParamsWithContext creates a new CheckClientVersionParams object with the default values initialized, and the ability to set a context for a request
func NewCheckClientVersionParamsWithHTTPClient ¶
func NewCheckClientVersionParamsWithHTTPClient(client *http.Client) *CheckClientVersionParams
NewCheckClientVersionParamsWithHTTPClient creates a new CheckClientVersionParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewCheckClientVersionParamsWithTimeout ¶
func NewCheckClientVersionParamsWithTimeout(timeout time.Duration) *CheckClientVersionParams
NewCheckClientVersionParamsWithTimeout creates a new CheckClientVersionParams object with the default values initialized, and the ability to set a timeout on a request
func (*CheckClientVersionParams) SetContext ¶
func (o *CheckClientVersionParams) SetContext(ctx context.Context)
SetContext adds the context to the check client version params
func (*CheckClientVersionParams) SetHTTPClient ¶
func (o *CheckClientVersionParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the check client version params
func (*CheckClientVersionParams) SetTimeout ¶
func (o *CheckClientVersionParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the check client version params
func (*CheckClientVersionParams) SetVersion ¶
func (o *CheckClientVersionParams) SetVersion(version string)
SetVersion adds the version to the check client version params
func (*CheckClientVersionParams) WithContext ¶
func (o *CheckClientVersionParams) WithContext(ctx context.Context) *CheckClientVersionParams
WithContext adds the context to the check client version params
func (*CheckClientVersionParams) WithHTTPClient ¶
func (o *CheckClientVersionParams) WithHTTPClient(client *http.Client) *CheckClientVersionParams
WithHTTPClient adds the HTTPClient to the check client version params
func (*CheckClientVersionParams) WithTimeout ¶
func (o *CheckClientVersionParams) WithTimeout(timeout time.Duration) *CheckClientVersionParams
WithTimeout adds the timeout to the check client version params
func (*CheckClientVersionParams) WithVersion ¶
func (o *CheckClientVersionParams) WithVersion(version string) *CheckClientVersionParams
WithVersion adds the version to the check client version params
func (*CheckClientVersionParams) WriteToRequest ¶
func (o *CheckClientVersionParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type CheckClientVersionReader ¶
type CheckClientVersionReader struct {
// contains filtered or unexported fields
}
CheckClientVersionReader is a Reader for the CheckClientVersion structure.
func (*CheckClientVersionReader) ReadResponse ¶
func (o *CheckClientVersionReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client for v1util API
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Client
New creates a new v1util API client.
func (*Client) CheckClientVersion ¶
func (a *Client) CheckClientVersion(params *CheckClientVersionParams) (*CheckClientVersionOK, error)
CheckClientVersion checks the client version
func (*Client) CreateRDSDatabaseUtil ¶
func (a *Client) CreateRDSDatabaseUtil(params *CreateRDSDatabaseUtilParams) (*CreateRDSDatabaseUtilOK, error)
CreateRDSDatabaseUtil creates a database for the service in the r d s if the connection could be created
func (*Client) GetStackMatrixUtil ¶
func (a *Client) GetStackMatrixUtil(params *GetStackMatrixUtilParams) (*GetStackMatrixUtilOK, error)
GetStackMatrixUtil returns default ambari details for distinct h d p and h d f
func (*Client) SetTransport ¶
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
func (*Client) TestAmbariDatabaseUtil ¶
func (a *Client) TestAmbariDatabaseUtil(params *TestAmbariDatabaseUtilParams) (*TestAmbariDatabaseUtilOK, error)
TestAmbariDatabaseUtil tests a database connection parameters
type CreateRDSDatabaseUtilOK ¶
type CreateRDSDatabaseUtilOK struct {
Payload *models_cloudbreak.RdsBuildResult
}
CreateRDSDatabaseUtilOK handles this case with default header values.
successful operation
func NewCreateRDSDatabaseUtilOK ¶
func NewCreateRDSDatabaseUtilOK() *CreateRDSDatabaseUtilOK
NewCreateRDSDatabaseUtilOK creates a CreateRDSDatabaseUtilOK with default headers values
func (*CreateRDSDatabaseUtilOK) Error ¶
func (o *CreateRDSDatabaseUtilOK) Error() string
type CreateRDSDatabaseUtilParams ¶
type CreateRDSDatabaseUtilParams struct { /*Body*/ Body *models_cloudbreak.RDSBuildRequest /*Target*/ Target []string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
CreateRDSDatabaseUtilParams contains all the parameters to send to the API endpoint for the create r d s database util operation typically these are written to a http.Request
func NewCreateRDSDatabaseUtilParams ¶
func NewCreateRDSDatabaseUtilParams() *CreateRDSDatabaseUtilParams
NewCreateRDSDatabaseUtilParams creates a new CreateRDSDatabaseUtilParams object with the default values initialized.
func NewCreateRDSDatabaseUtilParamsWithContext ¶
func NewCreateRDSDatabaseUtilParamsWithContext(ctx context.Context) *CreateRDSDatabaseUtilParams
NewCreateRDSDatabaseUtilParamsWithContext creates a new CreateRDSDatabaseUtilParams object with the default values initialized, and the ability to set a context for a request
func NewCreateRDSDatabaseUtilParamsWithHTTPClient ¶
func NewCreateRDSDatabaseUtilParamsWithHTTPClient(client *http.Client) *CreateRDSDatabaseUtilParams
NewCreateRDSDatabaseUtilParamsWithHTTPClient creates a new CreateRDSDatabaseUtilParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewCreateRDSDatabaseUtilParamsWithTimeout ¶
func NewCreateRDSDatabaseUtilParamsWithTimeout(timeout time.Duration) *CreateRDSDatabaseUtilParams
NewCreateRDSDatabaseUtilParamsWithTimeout creates a new CreateRDSDatabaseUtilParams object with the default values initialized, and the ability to set a timeout on a request
func (*CreateRDSDatabaseUtilParams) SetBody ¶
func (o *CreateRDSDatabaseUtilParams) SetBody(body *models_cloudbreak.RDSBuildRequest)
SetBody adds the body to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) SetContext ¶
func (o *CreateRDSDatabaseUtilParams) SetContext(ctx context.Context)
SetContext adds the context to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) SetHTTPClient ¶
func (o *CreateRDSDatabaseUtilParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) SetTarget ¶
func (o *CreateRDSDatabaseUtilParams) SetTarget(target []string)
SetTarget adds the target to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) SetTimeout ¶
func (o *CreateRDSDatabaseUtilParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) WithBody ¶
func (o *CreateRDSDatabaseUtilParams) WithBody(body *models_cloudbreak.RDSBuildRequest) *CreateRDSDatabaseUtilParams
WithBody adds the body to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) WithContext ¶
func (o *CreateRDSDatabaseUtilParams) WithContext(ctx context.Context) *CreateRDSDatabaseUtilParams
WithContext adds the context to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) WithHTTPClient ¶
func (o *CreateRDSDatabaseUtilParams) WithHTTPClient(client *http.Client) *CreateRDSDatabaseUtilParams
WithHTTPClient adds the HTTPClient to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) WithTarget ¶
func (o *CreateRDSDatabaseUtilParams) WithTarget(target []string) *CreateRDSDatabaseUtilParams
WithTarget adds the target to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) WithTimeout ¶
func (o *CreateRDSDatabaseUtilParams) WithTimeout(timeout time.Duration) *CreateRDSDatabaseUtilParams
WithTimeout adds the timeout to the create r d s database util params
func (*CreateRDSDatabaseUtilParams) WriteToRequest ¶
func (o *CreateRDSDatabaseUtilParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type CreateRDSDatabaseUtilReader ¶
type CreateRDSDatabaseUtilReader struct {
// contains filtered or unexported fields
}
CreateRDSDatabaseUtilReader is a Reader for the CreateRDSDatabaseUtil structure.
func (*CreateRDSDatabaseUtilReader) ReadResponse ¶
func (o *CreateRDSDatabaseUtilReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type GetStackMatrixUtilOK ¶
type GetStackMatrixUtilOK struct {
Payload *models_cloudbreak.StackMatrix
}
GetStackMatrixUtilOK handles this case with default header values.
successful operation
func NewGetStackMatrixUtilOK ¶
func NewGetStackMatrixUtilOK() *GetStackMatrixUtilOK
NewGetStackMatrixUtilOK creates a GetStackMatrixUtilOK with default headers values
func (*GetStackMatrixUtilOK) Error ¶
func (o *GetStackMatrixUtilOK) Error() string
type GetStackMatrixUtilParams ¶
type GetStackMatrixUtilParams struct { Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
GetStackMatrixUtilParams contains all the parameters to send to the API endpoint for the get stack matrix util operation typically these are written to a http.Request
func NewGetStackMatrixUtilParams ¶
func NewGetStackMatrixUtilParams() *GetStackMatrixUtilParams
NewGetStackMatrixUtilParams creates a new GetStackMatrixUtilParams object with the default values initialized.
func NewGetStackMatrixUtilParamsWithContext ¶
func NewGetStackMatrixUtilParamsWithContext(ctx context.Context) *GetStackMatrixUtilParams
NewGetStackMatrixUtilParamsWithContext creates a new GetStackMatrixUtilParams object with the default values initialized, and the ability to set a context for a request
func NewGetStackMatrixUtilParamsWithHTTPClient ¶
func NewGetStackMatrixUtilParamsWithHTTPClient(client *http.Client) *GetStackMatrixUtilParams
NewGetStackMatrixUtilParamsWithHTTPClient creates a new GetStackMatrixUtilParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetStackMatrixUtilParamsWithTimeout ¶
func NewGetStackMatrixUtilParamsWithTimeout(timeout time.Duration) *GetStackMatrixUtilParams
NewGetStackMatrixUtilParamsWithTimeout creates a new GetStackMatrixUtilParams object with the default values initialized, and the ability to set a timeout on a request
func (*GetStackMatrixUtilParams) SetContext ¶
func (o *GetStackMatrixUtilParams) SetContext(ctx context.Context)
SetContext adds the context to the get stack matrix util params
func (*GetStackMatrixUtilParams) SetHTTPClient ¶
func (o *GetStackMatrixUtilParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the get stack matrix util params
func (*GetStackMatrixUtilParams) SetTimeout ¶
func (o *GetStackMatrixUtilParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the get stack matrix util params
func (*GetStackMatrixUtilParams) WithContext ¶
func (o *GetStackMatrixUtilParams) WithContext(ctx context.Context) *GetStackMatrixUtilParams
WithContext adds the context to the get stack matrix util params
func (*GetStackMatrixUtilParams) WithHTTPClient ¶
func (o *GetStackMatrixUtilParams) WithHTTPClient(client *http.Client) *GetStackMatrixUtilParams
WithHTTPClient adds the HTTPClient to the get stack matrix util params
func (*GetStackMatrixUtilParams) WithTimeout ¶
func (o *GetStackMatrixUtilParams) WithTimeout(timeout time.Duration) *GetStackMatrixUtilParams
WithTimeout adds the timeout to the get stack matrix util params
func (*GetStackMatrixUtilParams) WriteToRequest ¶
func (o *GetStackMatrixUtilParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type GetStackMatrixUtilReader ¶
type GetStackMatrixUtilReader struct {
// contains filtered or unexported fields
}
GetStackMatrixUtilReader is a Reader for the GetStackMatrixUtil structure.
func (*GetStackMatrixUtilReader) ReadResponse ¶
func (o *GetStackMatrixUtilReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type TestAmbariDatabaseUtilOK ¶
type TestAmbariDatabaseUtilOK struct {
Payload *models_cloudbreak.AmbariDatabaseTestResult
}
TestAmbariDatabaseUtilOK handles this case with default header values.
successful operation
func NewTestAmbariDatabaseUtilOK ¶
func NewTestAmbariDatabaseUtilOK() *TestAmbariDatabaseUtilOK
NewTestAmbariDatabaseUtilOK creates a TestAmbariDatabaseUtilOK with default headers values
func (*TestAmbariDatabaseUtilOK) Error ¶
func (o *TestAmbariDatabaseUtilOK) Error() string
type TestAmbariDatabaseUtilParams ¶
type TestAmbariDatabaseUtilParams struct { /*Body*/ Body *models_cloudbreak.AmbariDatabaseDetails Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
TestAmbariDatabaseUtilParams contains all the parameters to send to the API endpoint for the test ambari database util operation typically these are written to a http.Request
func NewTestAmbariDatabaseUtilParams ¶
func NewTestAmbariDatabaseUtilParams() *TestAmbariDatabaseUtilParams
NewTestAmbariDatabaseUtilParams creates a new TestAmbariDatabaseUtilParams object with the default values initialized.
func NewTestAmbariDatabaseUtilParamsWithContext ¶
func NewTestAmbariDatabaseUtilParamsWithContext(ctx context.Context) *TestAmbariDatabaseUtilParams
NewTestAmbariDatabaseUtilParamsWithContext creates a new TestAmbariDatabaseUtilParams object with the default values initialized, and the ability to set a context for a request
func NewTestAmbariDatabaseUtilParamsWithHTTPClient ¶
func NewTestAmbariDatabaseUtilParamsWithHTTPClient(client *http.Client) *TestAmbariDatabaseUtilParams
NewTestAmbariDatabaseUtilParamsWithHTTPClient creates a new TestAmbariDatabaseUtilParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewTestAmbariDatabaseUtilParamsWithTimeout ¶
func NewTestAmbariDatabaseUtilParamsWithTimeout(timeout time.Duration) *TestAmbariDatabaseUtilParams
NewTestAmbariDatabaseUtilParamsWithTimeout creates a new TestAmbariDatabaseUtilParams object with the default values initialized, and the ability to set a timeout on a request
func (*TestAmbariDatabaseUtilParams) SetBody ¶
func (o *TestAmbariDatabaseUtilParams) SetBody(body *models_cloudbreak.AmbariDatabaseDetails)
SetBody adds the body to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) SetContext ¶
func (o *TestAmbariDatabaseUtilParams) SetContext(ctx context.Context)
SetContext adds the context to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) SetHTTPClient ¶
func (o *TestAmbariDatabaseUtilParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) SetTimeout ¶
func (o *TestAmbariDatabaseUtilParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) WithBody ¶
func (o *TestAmbariDatabaseUtilParams) WithBody(body *models_cloudbreak.AmbariDatabaseDetails) *TestAmbariDatabaseUtilParams
WithBody adds the body to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) WithContext ¶
func (o *TestAmbariDatabaseUtilParams) WithContext(ctx context.Context) *TestAmbariDatabaseUtilParams
WithContext adds the context to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) WithHTTPClient ¶
func (o *TestAmbariDatabaseUtilParams) WithHTTPClient(client *http.Client) *TestAmbariDatabaseUtilParams
WithHTTPClient adds the HTTPClient to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) WithTimeout ¶
func (o *TestAmbariDatabaseUtilParams) WithTimeout(timeout time.Duration) *TestAmbariDatabaseUtilParams
WithTimeout adds the timeout to the test ambari database util params
func (*TestAmbariDatabaseUtilParams) WriteToRequest ¶
func (o *TestAmbariDatabaseUtilParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type TestAmbariDatabaseUtilReader ¶
type TestAmbariDatabaseUtilReader struct {
// contains filtered or unexported fields
}
TestAmbariDatabaseUtilReader is a Reader for the TestAmbariDatabaseUtil structure.
func (*TestAmbariDatabaseUtilReader) ReadResponse ¶
func (o *TestAmbariDatabaseUtilReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
Source Files ¶
- check_client_version_parameters.go
- check_client_version_responses.go
- create_r_d_s_database_util_parameters.go
- create_r_d_s_database_util_responses.go
- get_stack_matrix_util_parameters.go
- get_stack_matrix_util_responses.go
- test_ambari_database_util_parameters.go
- test_ambari_database_util_responses.go
- v1util_client.go