Documentation
¶
Index ¶
- type Client
- type ClientOption
- type ClientService
- type DeleteRecordForbidden
- type DeleteRecordNotFound
- type DeleteRecordOK
- type DeleteRecordParams
- func (o *DeleteRecordParams) SetAPIVersion(aPIVersion *string)
- func (o *DeleteRecordParams) SetContext(ctx context.Context)
- func (o *DeleteRecordParams) SetDefaults()
- func (o *DeleteRecordParams) SetHTTPClient(client *http.Client)
- func (o *DeleteRecordParams) SetSysID(id string)
- func (o *DeleteRecordParams) SetTableName(tableName string)
- func (o *DeleteRecordParams) SetTimeout(timeout time.Duration)
- func (o *DeleteRecordParams) WithAPIVersion(aPIVersion *string) *DeleteRecordParams
- func (o *DeleteRecordParams) WithContext(ctx context.Context) *DeleteRecordParams
- func (o *DeleteRecordParams) WithDefaults() *DeleteRecordParams
- func (o *DeleteRecordParams) WithHTTPClient(client *http.Client) *DeleteRecordParams
- func (o *DeleteRecordParams) WithSysID(id string) *DeleteRecordParams
- func (o *DeleteRecordParams) WithTableName(tableName string) *DeleteRecordParams
- func (o *DeleteRecordParams) WithTimeout(timeout time.Duration) *DeleteRecordParams
- func (o *DeleteRecordParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type DeleteRecordReader
- type DeleteRecordUnauthorized
- type GetTableItemsForbidden
- type GetTableItemsNotFound
- type GetTableItemsOK
- type GetTableItemsParams
- func (o *GetTableItemsParams) SetAPIVersion(aPIVersion *string)
- func (o *GetTableItemsParams) SetContext(ctx context.Context)
- func (o *GetTableItemsParams) SetDefaults()
- func (o *GetTableItemsParams) SetHTTPClient(client *http.Client)
- func (o *GetTableItemsParams) SetQuery(query *string)
- func (o *GetTableItemsParams) SetTableName(tableName string)
- func (o *GetTableItemsParams) SetTimeout(timeout time.Duration)
- func (o *GetTableItemsParams) WithAPIVersion(aPIVersion *string) *GetTableItemsParams
- func (o *GetTableItemsParams) WithContext(ctx context.Context) *GetTableItemsParams
- func (o *GetTableItemsParams) WithDefaults() *GetTableItemsParams
- func (o *GetTableItemsParams) WithHTTPClient(client *http.Client) *GetTableItemsParams
- func (o *GetTableItemsParams) WithQuery(query *string) *GetTableItemsParams
- func (o *GetTableItemsParams) WithTableName(tableName string) *GetTableItemsParams
- func (o *GetTableItemsParams) WithTimeout(timeout time.Duration) *GetTableItemsParams
- func (o *GetTableItemsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type GetTableItemsReader
- type GetTableItemsUnauthorized
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 IdentifyReconcile API
func (*Client) DeleteRecord ¶ added in v0.1.3
func (a *Client) DeleteRecord(params *DeleteRecordParams, opts ...ClientOption) (*DeleteRecordOK, error)
func (*Client) GetTableItems ¶
func (a *Client) GetTableItems(params *GetTableItemsParams, opts ...ClientOption) (*GetTableItemsOK, error)
CreateIdentifyReconcile creates IdentifyReconcile
Create IdentifyReconcile
func (*Client) SetTransport ¶
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
type ClientOption ¶
type ClientOption func(*runtime.ClientOperation)
type ClientService ¶
type ClientService interface { GetTableItems(params *GetTableItemsParams, opts ...ClientOption) (*GetTableItemsOK, error) DeleteRecord(params *DeleteRecordParams, opts ...ClientOption) (*DeleteRecordOK, 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 IdentifyReconcile API client.
type DeleteRecordForbidden ¶ added in v0.1.3
type DeleteRecordForbidden struct { }
DeleteRecordForbidden describes a response with status code 403, with default header values.
Forbidden
func NewDeleteRecordForbidden ¶ added in v0.1.3
func NewDeleteRecordForbidden() *DeleteRecordForbidden
NewDeleteRecordForbidden Deletes a DeleteRecordForbidden with default headers values
func (*DeleteRecordForbidden) Error ¶ added in v0.1.3
func (o *DeleteRecordForbidden) Error() string
type DeleteRecordNotFound ¶ added in v0.1.3
DeleteRecordNotFound describes a response with status code 404, with default header values.
Not Found
func NewDeleteRecordNotFound ¶ added in v0.1.3
func NewDeleteRecordNotFound() *DeleteRecordNotFound
NewDeleteRecordNotFound Deletes a DeleteRecordNotFound with default headers values
func (*DeleteRecordNotFound) Error ¶ added in v0.1.3
func (o *DeleteRecordNotFound) Error() string
func (*DeleteRecordNotFound) GetPayload ¶ added in v0.1.3
func (o *DeleteRecordNotFound) GetPayload() *models.Error
type DeleteRecordOK ¶ added in v0.1.3
type DeleteRecordOK struct {
Payload string
}
func NewDeleteRecordOK ¶ added in v0.1.3
func NewDeleteRecordOK() *DeleteRecordOK
NewDeleteIdentifyReconcileDeleted Deletes a DeleteIdentifyReconcileDeleted with default headers values
func (*DeleteRecordOK) Error ¶ added in v0.1.3
func (o *DeleteRecordOK) Error() string
func (*DeleteRecordOK) GetPayload ¶ added in v0.1.3
func (o *DeleteRecordOK) GetPayload() string
type DeleteRecordParams ¶ added in v0.1.3
type DeleteRecordParams struct { /* APIVersion. The version of the API in yyyy-MM-dd format (UTC). For versioning information refer to /iaas/api/about */ APIVersion *string /* Body. Record Specification instance */ TableName string SysId string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
DeleteRecordParams contains all the parameters to send to the API endpoint
for the Delete Record operation. Typically these are written to a http.Request.
func NewDeleteRecordParams ¶ added in v0.1.3
func NewDeleteRecordParams() *DeleteRecordParams
NewDeleteRecordParams Deletes a new DeleteRecordParams 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 NewDeleteRecordParamsWithContext ¶ added in v0.1.3
func NewDeleteRecordParamsWithContext(ctx context.Context) *DeleteRecordParams
NewDeleteRecordParamsWithContext Deletes a new DeleteRecordParams object with the ability to set a context for a request.
func NewDeleteRecordParamsWithHTTPClient ¶ added in v0.1.3
func NewDeleteRecordParamsWithHTTPClient(client *http.Client) *DeleteRecordParams
NewDeleteRecordParamsWithHTTPClient Deletes a new DeleteRecordParams object with the ability to set a custom HTTPClient for a request.
func NewDeleteRecordParamsWithTimeout ¶ added in v0.1.3
func NewDeleteRecordParamsWithTimeout(timeout time.Duration) *DeleteRecordParams
NewDeleteRecordParamsWithTimeout Deletes a new DeleteRecordParams object with the ability to set a timeout on a request.
func (*DeleteRecordParams) SetAPIVersion ¶ added in v0.1.3
func (o *DeleteRecordParams) SetAPIVersion(aPIVersion *string)
SetAPIVersion adds the apiVersion to the Delete Record params
func (*DeleteRecordParams) SetContext ¶ added in v0.1.3
func (o *DeleteRecordParams) SetContext(ctx context.Context)
SetContext adds the context to the Delete Record params
func (*DeleteRecordParams) SetDefaults ¶ added in v0.1.3
func (o *DeleteRecordParams) SetDefaults()
SetDefaults hydrates default values in the Delete Record params (not the query body).
All values with no default are reset to their zero value.
func (*DeleteRecordParams) SetHTTPClient ¶ added in v0.1.3
func (o *DeleteRecordParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the Delete Record params
func (*DeleteRecordParams) SetSysID ¶ added in v0.1.3
func (o *DeleteRecordParams) SetSysID(id string)
func (*DeleteRecordParams) SetTableName ¶ added in v0.1.3
func (o *DeleteRecordParams) SetTableName(tableName string)
func (*DeleteRecordParams) SetTimeout ¶ added in v0.1.3
func (o *DeleteRecordParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the Delete Record params
func (*DeleteRecordParams) WithAPIVersion ¶ added in v0.1.3
func (o *DeleteRecordParams) WithAPIVersion(aPIVersion *string) *DeleteRecordParams
WithAPIVersion adds the aPIVersion to the Delete Record params
func (*DeleteRecordParams) WithContext ¶ added in v0.1.3
func (o *DeleteRecordParams) WithContext(ctx context.Context) *DeleteRecordParams
WithContext adds the context to the Delete Record params
func (*DeleteRecordParams) WithDefaults ¶ added in v0.1.3
func (o *DeleteRecordParams) WithDefaults() *DeleteRecordParams
WithDefaults hydrates default values in the Delete Record params (not the query body).
All values with no default are reset to their zero value.
func (*DeleteRecordParams) WithHTTPClient ¶ added in v0.1.3
func (o *DeleteRecordParams) WithHTTPClient(client *http.Client) *DeleteRecordParams
WithHTTPClient adds the HTTPClient to the Delete Record params
func (*DeleteRecordParams) WithSysID ¶ added in v0.1.3
func (o *DeleteRecordParams) WithSysID(id string) *DeleteRecordParams
func (*DeleteRecordParams) WithTableName ¶ added in v0.1.3
func (o *DeleteRecordParams) WithTableName(tableName string) *DeleteRecordParams
func (*DeleteRecordParams) WithTimeout ¶ added in v0.1.3
func (o *DeleteRecordParams) WithTimeout(timeout time.Duration) *DeleteRecordParams
WithTimeout adds the timeout to the Delete Record params
func (*DeleteRecordParams) WriteToRequest ¶ added in v0.1.3
func (o *DeleteRecordParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type DeleteRecordReader ¶ added in v0.1.3
type DeleteRecordReader struct {
// contains filtered or unexported fields
}
DeleteRecordeader is a Reader for the DeleteIdentifyReconcile structure.
func (*DeleteRecordReader) ReadResponse ¶ added in v0.1.3
func (o *DeleteRecordReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type DeleteRecordUnauthorized ¶ added in v0.1.3
type DeleteRecordUnauthorized struct { }
DeleteRecordUnauthorized describes a response with status code 401, with default header values.
Unauthorized
func NewDeleteRecordUnauthorized ¶ added in v0.1.3
func NewDeleteRecordUnauthorized() *DeleteRecordUnauthorized
func (*DeleteRecordUnauthorized) Error ¶ added in v0.1.3
func (o *DeleteRecordUnauthorized) Error() string
type GetTableItemsForbidden ¶ added in v0.1.3
type GetTableItemsForbidden struct { }
GetTableItemsForbidden describes a response with status code 403, with default header values.
Forbidden
func NewGetTableItemsForbidden ¶ added in v0.1.3
func NewGetTableItemsForbidden() *GetTableItemsForbidden
NewGetTableItemsForbidden creates a GetTableItemsForbidden with default headers values
func (*GetTableItemsForbidden) Error ¶ added in v0.1.3
func (o *GetTableItemsForbidden) Error() string
type GetTableItemsNotFound ¶ added in v0.1.3
GetTableItemsNotFound describes a response with status code 404, with default header values.
Not Found
func NewGetTableItemsNotFound ¶ added in v0.1.3
func NewGetTableItemsNotFound() *GetTableItemsNotFound
NewGetTableItemsNotFound creates a GetTableItemsNotFound with default headers values
func (*GetTableItemsNotFound) Error ¶ added in v0.1.3
func (o *GetTableItemsNotFound) Error() string
func (*GetTableItemsNotFound) GetPayload ¶ added in v0.1.3
func (o *GetTableItemsNotFound) GetPayload() *models.Error
type GetTableItemsOK ¶
type GetTableItemsOK struct {
Payload *models.GetTableItem
}
func NewGetTableItemsOK ¶
func NewGetTableItemsOK() *GetTableItemsOK
NewCreateIdentifyReconcileCreated creates a CreateIdentifyReconcileCreated with default headers values
func (*GetTableItemsOK) Error ¶
func (o *GetTableItemsOK) Error() string
func (*GetTableItemsOK) GetPayload ¶
func (o *GetTableItemsOK) GetPayload() *models.GetTableItem
type GetTableItemsParams ¶
type GetTableItemsParams struct { /* APIVersion. The version of the API in yyyy-MM-dd format (UTC). For versioning information refer to /iaas/api/about */ APIVersion *string /* Body. Project Specification instance */ TableName string Query *string SysparmDataSource *string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
CreateProjectParams contains all the parameters to send to the API endpoint
for the create project operation. Typically these are written to a http.Request.
func NewGetTableItemParams ¶
func NewGetTableItemParams() *GetTableItemsParams
NewCreateProjectParams creates a new CreateProjectParams 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 NewGetTableItemParamsWithContext ¶
func NewGetTableItemParamsWithContext(ctx context.Context) *GetTableItemsParams
NewCreateProjectParamsWithContext creates a new CreateProjectParams object with the ability to set a context for a request.
func NewGetTableItemParamsWithHTTPClient ¶
func NewGetTableItemParamsWithHTTPClient(client *http.Client) *GetTableItemsParams
NewCreateProjectParamsWithHTTPClient creates a new CreateProjectParams object with the ability to set a custom HTTPClient for a request.
func NewGetTableItemParamsWithTimeout ¶
func NewGetTableItemParamsWithTimeout(timeout time.Duration) *GetTableItemsParams
NewCreateProjectParamsWithTimeout creates a new CreateProjectParams object with the ability to set a timeout on a request.
func (*GetTableItemsParams) SetAPIVersion ¶
func (o *GetTableItemsParams) SetAPIVersion(aPIVersion *string)
SetAPIVersion adds the apiVersion to the create project params
func (*GetTableItemsParams) SetContext ¶
func (o *GetTableItemsParams) SetContext(ctx context.Context)
SetContext adds the context to the create project params
func (*GetTableItemsParams) SetDefaults ¶
func (o *GetTableItemsParams) SetDefaults()
SetDefaults hydrates default values in the create project params (not the query body).
All values with no default are reset to their zero value.
func (*GetTableItemsParams) SetHTTPClient ¶
func (o *GetTableItemsParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the create project params
func (*GetTableItemsParams) SetQuery ¶
func (o *GetTableItemsParams) SetQuery(query *string)
func (*GetTableItemsParams) SetTableName ¶
func (o *GetTableItemsParams) SetTableName(tableName string)
func (*GetTableItemsParams) SetTimeout ¶
func (o *GetTableItemsParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the create project params
func (*GetTableItemsParams) WithAPIVersion ¶
func (o *GetTableItemsParams) WithAPIVersion(aPIVersion *string) *GetTableItemsParams
WithAPIVersion adds the aPIVersion to the create project params
func (*GetTableItemsParams) WithContext ¶
func (o *GetTableItemsParams) WithContext(ctx context.Context) *GetTableItemsParams
WithContext adds the context to the create project params
func (*GetTableItemsParams) WithDefaults ¶
func (o *GetTableItemsParams) WithDefaults() *GetTableItemsParams
WithDefaults hydrates default values in the create project params (not the query body).
All values with no default are reset to their zero value.
func (*GetTableItemsParams) WithHTTPClient ¶
func (o *GetTableItemsParams) WithHTTPClient(client *http.Client) *GetTableItemsParams
WithHTTPClient adds the HTTPClient to the create project params
func (*GetTableItemsParams) WithQuery ¶
func (o *GetTableItemsParams) WithQuery(query *string) *GetTableItemsParams
func (*GetTableItemsParams) WithTableName ¶
func (o *GetTableItemsParams) WithTableName(tableName string) *GetTableItemsParams
func (*GetTableItemsParams) WithTimeout ¶
func (o *GetTableItemsParams) WithTimeout(timeout time.Duration) *GetTableItemsParams
WithTimeout adds the timeout to the create project params
func (*GetTableItemsParams) WriteToRequest ¶
func (o *GetTableItemsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type GetTableItemsReader ¶
type GetTableItemsReader struct {
// contains filtered or unexported fields
}
CreateIdentifyReconcileReader is a Reader for the CreateIdentifyReconcile structure.
func (*GetTableItemsReader) ReadResponse ¶
func (o *GetTableItemsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type GetTableItemsUnauthorized ¶ added in v0.1.3
type GetTableItemsUnauthorized struct { }
GetTableItemsUnauthorized describes a response with status code 401, with default header values.
Unauthorized
func NewGetTableItemsUnauthorized ¶ added in v0.1.3
func NewGetTableItemsUnauthorized() *GetTableItemsUnauthorized
func (*GetTableItemsUnauthorized) Error ¶ added in v0.1.3
func (o *GetTableItemsUnauthorized) Error() string