2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package job
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// New creates a new job API client.
func New ( transport runtime . ClientTransport , formats strfmt . Registry ) ClientService {
return & Client { transport : transport , formats : formats }
}
/ *
Client for job API
* /
type Client struct {
transport runtime . ClientTransport
formats strfmt . Registry
}
// ClientOption is the option for Client methods
type ClientOption func ( * runtime . ClientOperation )
// ClientService is the interface for Client methods
type ClientService interface {
GetJob ( params * GetJobParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetJobOK , error )
GetJobs ( params * GetJobsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetJobsOK , error )
GetJobsObservable ( params * GetJobsObservableParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetJobsObservableOK , error )
PostJobs ( params * PostJobsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * PostJobsOK , error )
PutJobs ( params * PutJobsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * PutJobsOK , error )
SetTransport ( transport runtime . ClientTransport )
}
/ *
GetJob gets a single job object
Return a single Job object from datastore as a Singleton
* /
func ( a * Client ) GetJob ( params * GetJobParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetJobOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetJobParams ( )
}
op := & runtime . ClientOperation {
ID : "getJob" ,
Method : "GET" ,
PathPattern : "/jobs/{jobIdPath}" ,
ProducesMediaTypes : [ ] string { "application/json" } ,
ConsumesMediaTypes : [ ] string { "application/json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetJobReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetJobOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getJob: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
/ *
GetJobs gets a list jobs
Return a list of Job records from the datastore
* /
func ( a * Client ) GetJobs ( params * GetJobsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetJobsOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetJobsParams ( )
}
op := & runtime . ClientOperation {
ID : "getJobs" ,
Method : "GET" ,
PathPattern : "/jobs" ,
ProducesMediaTypes : [ ] string { "application/json" } ,
ConsumesMediaTypes : [ ] string { "application/json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetJobsReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetJobsOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getJobs: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
/ *
GetJobsObservable gets jobs in an observable array
Returns a Job retrieval in a observable array
* /
func ( a * Client ) GetJobsObservable ( params * GetJobsObservableParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetJobsObservableOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetJobsObservableParams ( )
}
op := & runtime . ClientOperation {
ID : "getJobsObservable" ,
Method : "GET" ,
PathPattern : "/jobs/observable" ,
ProducesMediaTypes : [ ] string { "application/json" } ,
ConsumesMediaTypes : [ ] string { "application/json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetJobsObservableReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetJobsObservableOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getJobsObservable: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
/ *
PostJobs creates new jobs
2021-08-05 19:37:53 +00:00
Create and enqueue Jobs in Taxnexus
2021-07-31 03:05:02 +00:00
* /
func ( a * Client ) PostJobs ( params * PostJobsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * PostJobsOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewPostJobsParams ( )
}
op := & runtime . ClientOperation {
ID : "postJobs" ,
Method : "POST" ,
PathPattern : "/jobs" ,
ProducesMediaTypes : [ ] string { "application/json" } ,
ConsumesMediaTypes : [ ] string { "application/json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & PostJobsReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * PostJobsOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for postJobs: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
/ *
PutJobs updates jobs
2021-08-05 19:37:53 +00:00
Update Jobs in Taxnexus
2021-07-31 03:05:02 +00:00
* /
func ( a * Client ) PutJobs ( params * PutJobsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * PutJobsOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewPutJobsParams ( )
}
op := & runtime . ClientOperation {
ID : "putJobs" ,
Method : "PUT" ,
PathPattern : "/jobs" ,
ProducesMediaTypes : [ ] string { "application/json" } ,
ConsumesMediaTypes : [ ] string { "application/json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & PutJobsReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * PutJobsOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for putJobs: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
// SetTransport changes the transport on the client
func ( a * Client ) SetTransport ( transport runtime . ClientTransport ) {
a . transport = transport
}